0

Androidのレイアウトについて質問があります。レイアウトのドキュメントを読みました。私の質問は、開発中に、画像が名前の付いたフォルダに配置されているかどうかを言うことです。

 drawable-hdpi
 drawable-ldpi
 drawable-mdpi
 drawable-xhdpi

drawable-ldpiは、画面が小さい電話、タブ用のdrawable-xhdpi、およびdrawable-mdpiの中型スクリーン電話を指しますか。

画像がない場合は、電話、タブなど、すべてのタイプのデバイスに配置できる必要があります

どうすればいいですか。

4

2 に答える 2

2

通常、画面が大きいほどDPIが高くなりますが、常にそうであるとは限りません。携帯電話とタブレットの画面を区別しようとしている場合、密度は正しい方法ではありません。以下を使用して、

  • drawable:電話
  • drawable-sw600dp:7"タブレット
  • drawable-sw720dp:10"タブレット

または、画面サイズを使用することもできます:small、、、。例:。ドキュメントから、mediumlargexlargedrawable-large

  • xlarge画面は少なくとも960dpx720dp
  • large画面は少なくとも640dpx480dp
  • normal画面は少なくとも470dpx320dpです
  • small画面は少なくとも426dpx320dpです

http://developer.android.com/guide/practices/screens_support.html

于 2012-08-30T15:41:08.797 に答える
1

Googling Android xhdpi brings up the Android resource on how you should use these:

http://developer.android.com/guide/practices/screens_support.html

DPI means how many dots per inch there are. Some small phones fit lots of dots in, which gives them a high DPI. You should provide different sized images for different resolutions. Google recommends creating images in the ration of 3:4:6:8 for l, m, h and xh DPIs.

于 2012-08-30T15:39:45.477 に答える