xdpi布局和hdpi布局

时间:2012-03-05 13:32:01

标签: android android-layout

当我尝试在具有大型res(1280x800)的模拟器中运行我的应用时,xdpi布局应该充气 - 但是hdpi布局会膨胀。
为什么会这样? 我怎么能强制android膨胀正确的一个?

修改
布局大/ main.xml中
layout-xlarge / main.xml

提前致谢

1 个答案:

答案 0 :(得分:1)

如果你的avd详细信息显示hw.lcd.density as 320意味着它会从xhdpi中选择

如果hw.lcd.density: 240则会从hdpi中选择

enter image description here

//你需要这样做:

layout-hdpi //这是错误的

res/layout/my_layout.xml             // layout for normal screen size ("default")
res/layout-small/my_layout.xml       // layout for small screen size
res/layout-large/my_layout.xml       // layout for large screen size
res/layout-xlarge/my_layout.xml      // layout for extra large screen size
res/layout-xlarge-land/my_layout.xml // layout for extra large in landscape orientation

res/drawable-mdpi/my_icon.png        // bitmap for medium density
res/drawable-hdpi/my_icon.png        // bitmap for high density
res/drawable-xhdpi/my_icon.png       // bitmap for extra high density