如何讓佈局「幾乎全屏」?我的意思是我不想那裏的圖標和應用程序的名稱(「測試」)。我只是想表明含電池和信號狀態的頂部區域,並能夠利用任何我想要的屏幕Android版面匹配根父母
圖像從Eclipse的「圖形佈局」 3.2英寸HVGA滑塊(ADP1)的其餘部分 - 肖像
我試圖讓我的佈局,以填補父和刪除一切但圖標和文本仍然存在
佈局XML
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#131325"
>
</RelativeLayout>
清單XML
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="myTests.homeSpace"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="15" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".TestsActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".screen1" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
謝謝
,爲您所修改的主題 – Praveenkumar