我正在为Android开发一款应用。我在各种手机中测试我的应用程序,效果很好。我有我的文件夹mdpi,hdpi ...,xxxhdpi布局和drawables。 现在我面临着平板电脑的问题。我在谷歌Nexus 10中测试我的应用程序,该应用程序看起来不太好。平板电脑的密度为2.0,因此当我调整组件的大小时,所有组件都非常小。我不知道是否必须添加其他大小的文件夹布局或类似的东西。 如何开发应用程序以在平板电脑中工作呢?有些东西不见了,我找不到。
答案 0 :(得分:0)
您可以根据屏幕大小添加不同的布局资源,请使用以下限定符:
res/layout-sw600dp/ # For 7” tablets (600dp wide and bigger)
res/layout-sw720dp/ # For 10” tablets (720dp wide and bigger)
res/layout-sw600dp-port/ # For 7” tablets in portrait (600dp wide or bigger)
res/layout-sw720dp-port/ # For 10” tablets in portrait (720dp wide or bigger)
请参阅此问题:How to prepare layout,drawable folders for 7",10" android tablets for both landscape and portrait?