一 、测试设备(两款分辨率都是1920x1200的设备,屏幕密度不同)
- 经测试 density为480的宽为640dp,高为400dp。
- 经测试 density为240的宽为1280dp,高为800dp。
二、环境准备
- mipmap-xxhdpi文件夹下放入 431x439的图片。
- xml布局文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
tools:context=".MainActivity">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/image"
android:orientation="vertical">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="111111111" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="2222222222" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="333333333" />
</LinearLayout>
<View
android:layout_width="2dp"
android:layout_height="439px"
android:background="@color/black" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/image" />
<View
android:layout_width="2dp"
android:layout_height="439px"
android:background="@color/black" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/image" />
<View
android:layout_width="2dp"
android:layout_height="439px"
android:background="@color/black" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/image" />
</LinearLayout>
二、引入autosize之前
-
density为480的展示效果(经ps检测,图片与原图一样大小)
-density为240的展示效果(经ps检测,图片与原图 不 一样大小)
三、引入autusize之后
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.test.teacher">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/Theme.Test">
<meta-data
android:name="design_width_in_dp"
android:value="640" />
<meta-data
android:name="design_height_in_dp"
android:value="400" />
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
implementation 'me.jessyan:autosize:1.2.1'
展示效果就一样了