AndroidManifest.xml
1.45 KB
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cnlive.strike.happychina">
<application>
<activity
android:name="com.cnlive.strike.happychina.ui.activity.ClassifyActivity"
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation"
android:screenOrientation="portrait" />
<activity
android:name="com.cnlive.strike.happychina.ui.activity.ClassifySearchActivity"
android:configChanges="keyboardHidden|screenSize|smallestScreenSize|screenLayout|orientation"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateVisible|adjustPan" />
<activity
android:name="com.cnlive.strike.happychina.ui.activity.DarenActivity"
android:configChanges="keyboardHidden|screenSize|orientation|smallestScreenSize|screenLayout"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateAlwaysHidden|adjustPan" />
<activity
android:name="com.cnlive.strike.happychina.ui.activity.FollowDarensActivity"
android:configChanges="keyboardHidden|screenSize|orientation|smallestScreenSize|screenLayout"
android:launchMode="singleTop"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden|adjustResize" />
</application>
</manifest>