Android 屏幕自适应方向尺寸与分辨率

摘要:Android 屏幕自适应方向尺寸与分辨率,android 自适应分辨率,android 屏幕自适应,android 图片自适应,android 横屏布局,包括屏幕界面布局、多分辨率支持、获取屏幕尺寸、屏幕横屏与竖屏等。 屏幕界面布局 Android 手机屏幕大小有 4

<!-- 'content by desteps.com' -->Android 屏幕自适应方向尺寸与分辨率,android 自适应分辨率,android 屏幕自适应,android 图片自适应,android 横屏布局,包括屏幕界面布局、多分辨率支持、获取屏幕尺寸、屏幕横屏与竖屏等。

屏幕界面布局

Android 手机屏幕大小有 480x320 、640x360, 、800x480 ,怎样让 App 自动适应不同的屏幕呢?

我们可以在 res 目录下创建不同的 layout 文件夹,比如 layout-640x360 、layout-800x480 ,<!-- 'content by desteps.com' -->所有的 layout 文件在编译之后都会写入 R.java 里,而系统将根据屏幕的大小自己选择合适的 layout 进行使用。

多分辨率支持

支持多分辨率有 mdpi、ldpi、hdpi 3个文件。

  • hdpi 里面存放高分辨率的图片,如 WVGA (480x800),FWVGA (480x854) ;
  • mdpi 里面存放中等分辨率的图片,如 HVGA (320x480) ;
  • ldpi 里面存放低分辨率的图片,如 QVGA (240x320) 。

系统将根据机器的分辨率来分别到这几个文件夹里面去找对应的图片,<!-- 'content by desteps.com' -->在程序开发中,为了兼容不同平台不同屏幕,建议将不同版本图片根据需求存放在各自对应的文件夹中。

获取屏幕尺寸

<!-->code by 'http://www.desteps.com' 
 --&gt;<span style="color:#ff0000;">以下为引用内容:</span>&nbsp;
Display display = getWindowManager().getDefaultDisplay(); 
int width = display.getWidth(); 
int height = display.getHeight();


DisplayMetrics dm = new DisplayMetrics(); 
dm = getResources().getDisplayMetrics(); 
int screenWidth = dm.widthPixels; 
int screenHeight = dm.heightPixels; 
float density = dm.density; 
float xdpi = dm.xdpi; 
float ydpi = dm.ydpi;</!-->

<!-- 'content by desteps.com' -->屏幕横屏与竖屏

屏幕横屏与竖屏

1、横屏竖屏自动切换

<!-- 'content by desteps.com' -->首先在 res 目录下建立 layout-port-800x600和layout-land 两个目录,里面分别放置竖屏和横屏两种布局文件,这样在手机屏幕方向变化的时候系统会自动调用相应的布局文件,避免一种布局文件无法满足两种屏幕显示的问题。

有的程序适合从竖屏切换到横屏,或者反过来,这个时候怎么办呢?可以在配置 Activity 的地方进行如下的配置:

<!-->code by 'http://www.desteps.com' 
 --&gt;<span style="color:#ff0000;">以下为引用内容:</span>&nbsp;
android:screenOrientation=&quot;portrait&quot;</!-->

这样就可以保证是竖屏总是竖屏了,或者 landscape 横向。

而有的程序是适合横竖屏切换的。如何处理呢?首先要在配置 Activity 的时候进行如下的配置:

<!-->code by 'http://www.desteps.com' 
 --&gt;<span style="color:#ff0000;">以下为引用内容:</span>&nbsp;
android:configChanges=&quot;keyboardHidden|orientation&quot;</!-->

另外需要重写 Activity 的 onConfigurationChanged 方法。实现方式如下:

<!-->code by 'http://www.desteps.com' 
 --&gt;<span style="color:#ff0000;">以下为引用内容:</span>&nbsp;
@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、屏幕固定,不随手机方向转动而变化

<!-- 'content by desteps.com' -->可以在 AndroidManifest.xml 中配置,加入:

<!-->code by 'http://www.desteps.com' 
 --&gt;<span style="color:#ff0000;">以下为引用内容:</span>&nbsp;
android:screenOrientation=&quot;landscape&quot;</!-->
 
例如(landscape 是横向,portrait 是纵向): 

<!-->code by 'http://www.desteps.com' 
 --&gt;<span style="color:#ff0000;">以下为引用内容:</span>&nbsp;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt; 
&lt;manifest xmlns:android=&quot;http://schemas.android.com/apk/res/android&quot; 
package=&quot;com.ray.linkit&quot; 
android:versionCode=&quot;1&quot; 
android:versionName=&quot;1.0&quot;&gt; 
&lt;application android:icon=&quot;@drawable/icon&quot; android:label=&quot;@string/app_name&quot;&gt; 
&lt;activity android:name=&quot;.Main&quot; 
android:label=&quot;@string/app_name&quot; 
android:screenOrientation=&quot;portrait&quot;&gt; 
&lt;intent-filter&gt; 
&lt;action android:name=&quot;android.intent.action.MAIN&quot; /&gt; 
&lt;category android:name=&quot;android.intent.category.LAUNCHER&quot; /&gt; 
&lt;/intent-filter&gt; 
&lt;/activity&gt; 
&lt;activity android:name=&quot;.GamePlay&quot; 
android:screenOrientation=&quot;portrait&quot;&gt;&lt;/activity&gt; 
&lt;activity android:name=&quot;.OptionView&quot; 
android:screenOrientation=&quot;portrait&quot;&gt;&lt;/activity&gt; 
&lt;/application&gt; 
&lt;uses-sdk android:minSdkVersion=&quot;3&quot; /&gt; 
&lt;/manifest&gt;</!-->

android 每次屏幕的切换动会重启 Activity ,所以应该在Activity销毁前保存当前活动的状态,在Activity再次Create的时候载入配置,那样进行中的游戏就不再自动重启。

你可能感兴趣的:(android)