我有一個相對的佈局,它不適合整個設備的寬度和高度,它總是在頂部,左側,底部和右側留下填充。android佈局不填充屏幕留下填充左邊和右邊
我的活動XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:fillViewport ="true"
tools:context=".MainActivity" >
<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
清單包含
<supports-screens android:xlargeScreens="true" />
<uses-sdk
android:minSdkVersion="14"
android:targetSdkVersion="17" />
我是個新手,因此機器人,我可能試圖重新發布其本來已經回答同樣的問題!
我發現的所有答案都是明顯更改或fill_parent ..但它無論如何不幫助我。
即時通訊測試它在nexus 4設備上。
爲什麼如果你不需要定義'padding'?另外,你的高度設置爲'wrap_content'。另外請注意,'fill_parent'已被棄用,應該使用'match_parent'代替 – codeMagic
我只是在玩弄,並且做了一些混亂! fill_parent和刪除填充做了詭計以及清單更改 –
很高興你明白了。只是一點點的建議......當你有這樣的佈局問題時,有時它有助於評論任何不必要的東西,然後逐漸添加回來看看問題出在哪裏。 – codeMagic