異なるデバイス用に1つのアプリケーションを作成する場合は、SDKで定義されているAndroidの異なるフォルダーを使用する必要があります
例えば
drawable-ldpi - to place the images for the low screen density devices(240*320)
drawable-mdpi - to place the images for the middle screen density devices(320*480)
drawable-hdpi - to place the images for the high screen density devices(480*800)
drawable-xhdpi - to place the images for the extra high screen density devices (above 480*800)
タブレットドローブル用のアプリケーション(sw720dp)を作成して、タブレットデバイス用の画像を配置する場合(7 ")
画像を配置するために使用されるドローアブル。別のドローアブルフォルダのレイアウトを作成する必要があります
layout-ldpi - to place the layout for the low screen density devices(240*320)
layout-mdpi - to place the layout for the middle screen density devices(320*480)
layout-hdpi - to place the layout for the high screen density devices(480*800)
layout-xhdpi - to place the layout for the extra high screen density devices (above 480*800)
androidは、デバイスの密度に応じて、アプリケーションから画像とレイアウトを自動的に取得します。しかし、これには定義する必要があります
<supports-screens android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true" />
アプリケーションが複数の画面解像度のデバイス用に開発されるようにします。