我不是Android开发的新手,但我是3.0 android的新手。
我的问题是我找不到如何将布局设置为比标准小布局更大的东西。我设置宽度的fill_parent,wrap_content或match_parent ......无关紧要......
有人有任何想法吗?
答案 0 :(得分:1)
您需要在清单文件中使用此功能。显然你不需要所有的条目,我只需要包含android:largeScreens =“true”来获得完整的大小。
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:anyDensity="true" />