我一直在使用新的Android更新2.3.4为我的Droid x2编写应用程序。 使用简单测试应用程序的布局在屏幕的左侧,右侧和后侧显示边距。 如何获得屏幕的完整空间?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/white"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Hello World, MainActivity"
/>
</LinearLayout>
答案 0 :(得分:1)
我有同样的问题,我想我解决了。 将此行插入Manifest即可。
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="8"></uses-sdk>
有关详细信息,请查看此网站:http://realmike.org/blog/2010/12/21/multiple-screen-sizes-with-processing-for-android/