「画面互換モード」のドキュメントを読んだ後、私はとても混乱しています。まず、同じ画像の2つの異なるサイズを作成しました。次に、レイアウトを1つだけ作成しました。第三に、画像に150dipを設定しました。最後に、Galaxy SII(高密度)で正しく取得しましたが、Tablet 10 "(中密度)をエミュレートすると正しく取得できませんでした。両方のデバイスで右の境界線までの距離を確認してください。
<?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" >
<Button
android:id="@+id/button1"
android:layout_width="150dip"
android:layout_height="150dip"
android:text="DENSIDADE" />
<ImageView
android:id="@+id/image1"
android:src="@drawable/mode_tapcolor"
android:layout_width="150dip"
android:layout_height="150dip" />
</LinearLayout>
私は何をすべきか?