Orientationの固定
縦横表示の固定!
http://handalab.com/android/dev-2/setting/4/
これで少しかるくなるかなぁ・・・
@AndroidManufest.xml
<!-- ここでOrientationを固定 -->
<activity android:name=".test"
android:screenOrientation="portrait"
android:configChanges="keyboardHidden|orientation"
android:label="@string/app_name">
縦横表示の固定!
http://handalab.com/android/dev-2/setting/4/
これで少しかるくなるかなぁ・・・
@AndroidManufest.xml
<!-- ここでOrientationを固定 -->
<activity android:name=".test"
android:screenOrientation="portrait"
android:configChanges="keyboardHidden|orientation"
android:label="@string/app_name">