屏幕横屏与竖屏
1、横屏竖屏自动切换
首先在 res 目录下建立 layout-port-800x600和layout-land 两个目录,里面分别放置竖屏和横屏两种布局文件,这样在手机屏幕方向变化的时候系统会自动调用相应的布局文件,避免一种布局文件无法满足两种屏幕显示的问题。
有的程序适合从竖屏切换到横屏,或者反过来,这个时候怎么办呢?可以在配置 Activity 的地方进行如下的配置:
code by 'http://www.desteps.com'
-->以下为引用内容:
android:screenOrientation="portrait"
这样就可以保证是竖屏总是竖屏了,或者 landscape 横向。
而有的程序是适合横竖屏切换的。如何处理呢?首先要在配置 Activity 的时候进行如下的配置:
code by 'http://www.desteps.com'
-->以下为引用内容:
android:configChanges="keyboardHidden|orientation"
另外需要重写 Activity 的 onConfigurationChanged 方法。实现方式如下:
code by 'http://www.desteps.com'
-->以下为引用内容:
@Override
public void onConfigurationChanged(Configuration newConfig) {
super.onConfigurationChanged(newConfig);
if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_LANDSCAPE) {
// land do nothing is ok
} else if (this.getResources().getConfiguration().orientation == Configuration.ORIENTATION_PORTRAIT) {
// port do nothing is ok
}
}
2、不同分辨率横屏竖屏自动切换
以800x600 为例,可以在res目录下建立 layout-port-800x600 和 layout-land-800x600 两个目录
说明:每个 activity 都有这个属性 screenOrientation ,每个 activity 都需要设置,可以设置为竖屏(portrait),也可以设置为无重力感应(nosensor)。
3、屏幕固定,不随手机方向转动而变化
可以在 AndroidManifest.xml 中配置,加入:
code by 'http://www.desteps.com'
-->以下为引用内容:
android:screenOrientation="landscape"
例如(landscape 是横向,portrait 是纵向):code by 'http://www.desteps.com' -->以下为引用内容: <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.ray.linkit" android:versionCode="1" android:versionName="1.0"> <application android:icon="@drawable/icon" android:label="@string/app_name"> <activity android:name=".Main" android:label="@string/app_name" android:screenOrientation="portrait"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".GamePlay" android:screenOrientation="portrait"></activity> <activity android:name=".OptionView" android:screenOrientation="portrait"></activity> </application> <uses-sdk android:minSdkVersion="3" /> </manifest>
android 每次屏幕的切换动会重启 Activity ,所以应该在Activity销毁前保存当前活动的状态,在Activity再次Create的时候载入配置,那样进行中的游戏就不再自动重启。