android的适配方法

时间:2022-04-25
本文章向大家介绍android的适配方法,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

首先要介绍一下drawable-mdpi、drawable-hdpi-1280x800、drawable-hdpi。这个相信好好看一下也明白。就是代表着分辨率 320X480、1280X800、480X800三款屏幕图片资源包。其实适配也很多。我大致说一种就行,其他大家慢慢琢磨,或上网周转。

说明一下这个图的意思,就是我要说的配置方法,就是一套图片资源(资源文件要看美工的设计了。最好能是XXX.9.png)配一套布局文件及多套数值文件。

布局文件:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 android:layout_width="fill_parent" 
 android:layout_height="fill_parent" 
 android:orientation="vertical" > 
 
 <ImageView 
 android:layout_width="@dimen/imagewidth" 
 android:layout_height="wrap_content" 
 android:background="@drawable/ic_launcher" /> 
 
</LinearLayout> 

数值文件:

<?xml version="1.0" encoding="utf-8"?> 
<resources> 
 <!-- values-hdpi 480X800 --> 
 <dimen name="imagewidth">320dip</dimen> 
</resources> 
<resources> 
 <!-- values-hdpi-1280x800 --> 
 <dimen name="imagewidth">320dip</dimen> 
</resources> 
<?xml version="1.0" encoding="utf-8"?> 
<resources> 
 <!-- values-hdpi  480X320 --> 
 <dimen name="imagewidth">320dip</dimen> 
</resources>