我有一个活动中显示的布局。当我在集团上运行时,它会占据整个屏幕但是当我在机器人3上运行它时,底部和侧面都有一个黑色条。如何制作它以占用整个屏幕?我以为android想为你做那个?
更新
我只是设置Activity的contentView,如下所示:
activity.setContentView(R.layout.home);
继承XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/home_screen_lay"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/home_screen">
</RelativeLayout>
继承我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.myapp"
android:versionCode="1"
android:versionName="1.0">
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".Viewer"
android:label="@string/app_name"
android:configChanges="orientation|keyboard|keyboardHidden"
android:screenOrientation="landscape">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
下图:
你可以看到它不会调整大小的位置。
如果有人需要更多信息我可以再次更新。
答案 0 :(得分:1)
我有一次像这样的问题。这是因为AndroidManifest中的min或target sdk没有设置为至少3级。
这样的事情:<uses-sdk android:targetSdkVersion="7" />
我猜测1级不能处理更高像素的屏幕。