一 、測試設(shè)備(兩款分辨率都是1920x1200的設(shè)備凯亮,屏幕密度不同)
- 經(jīng)測試 density為480的寬為640dp边臼,高為400dp。
- 經(jīng)測試 density為240的寬為1280dp假消,高為800dp柠并。
二、環(huán)境準(zhǔn)備
- 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的展示效果(經(jīng)ps檢測,圖片與原圖一樣大锌谢Α)
-density為240的展示效果(經(jīng)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'
展示效果就一樣了