123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?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="com.yingyang.workbenches.WorkbenchesActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:launchMode="singleTask"
- 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=".servicepackage.ServicePackageActivity"
- 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=".freetraining.FreeTrainActivity"
- 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=".orderlist.OrderListActivity"
- android:configChanges="keyboardHidden|orientation|screenSize"
- android:screenOrientation="landscape"
- android:windowSoftInputMode="adjustResize|adjustPan" />
- </application>
- </manifest>
|