1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?xml version="1.0" encoding="utf-8"?>
- <manifest xmlns:android="http://schemas.android.com/apk/res/android"
- package="com.yingyang.workbenches">
- <application>
- <activity
- android:name=".orderlist.OrderListActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:screenOrientation="landscape"
- android:windowSoftInputMode="adjustResize|adjustPan" />
- <activity
- android:name=".traincontentdetails.TrainContentDetailsActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:screenOrientation="landscape"
- android:windowSoftInputMode="adjustResize|adjustPan" />
- <activity
- android:name=".freetraining.FreeTrainActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:screenOrientation="landscape"
- android:windowSoftInputMode="adjustResize|adjustPan" />
- <activity
- android:name=".leisurebrain.LeisureBrainActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:screenOrientation="landscape"
- android:windowSoftInputMode="adjustResize|adjustPan" />
- <activity
- android:name=".traindata.TrainDataActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:screenOrientation="landscape"
- android:windowSoftInputMode="adjustResize|adjustPan" />
- <activity
- android:name="com.yingyang.workbenches.WorkbenchesActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:launchMode="singleTask"
- android:screenOrientation="landscape"
- android:windowSoftInputMode="adjustResize|adjustPan" />
- <activity
- android:name=".servicepackage.ServicePackageActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:screenOrientation="landscape"
- android:windowSoftInputMode="adjustResize|adjustPan" />
- </application>
- </manifest>
|