styles.xml:
<style name="UAppTheme" parent="@android:style/Theme.Holo.Light.NoActionBar">
</style>
AndroidManifest.xml:
<activity
android:name="com.XXX..activity.MyActivity"
android:theme="@style/AppTheme">
android:label="@string/app_name"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden|adjustPan" >
</activity>
Solution:
styles.xml:
<style name="UAppTheme" parent="@android:style/Theme.Holo.Light.NoActionBar">
<item name="android:windowSoftInputMode">stateHidden|adjustPan</item>
</style>
沒有留言:
張貼留言