我想使用RelativeLayout將按鈕對齊屏幕的右下角和左下角。我想要做到這一點,以保持不同屏幕尺寸的相同佈局。目前,屏幕上的按鈕會根據屏幕的分辨率向上/向下移動。 320x480將屏幕上的按鈕放大到480x800。我試圖讓我的屏幕在兩種尺寸之間看起來一樣。將Android Button調整到RelativeLayout的底部?
10
A
回答
3
你使用的是android:layout_alignParent *?無論屏幕大小如何,這都應該證明這一點。
其中*底部或頂部或左或右
3
在加入什麼AedonEtLIRA說你應該確保在RelativeLayout的你一直充滿了整個顯示區域。即。您沒有在視圖層次結構中的任何位置定義任何大小,而是使用match_parent。如果你使用了AedonEtLIRA給出的佈局定義,你應該得到你想要的。
2
例子:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:panel="http://schemas.android.com/apk/res/it.kronplatz"
android:id="@+id/MainLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:id="@+id/ButtonLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_centerHorizontal="true"
android:baselineAligned="false" >
<ImageButton
android:id="@+id/locateMeButton"
android:layout_width="70px"
android:layout_height="70px"
android:layout_marginLeft="5px"
android:src="@drawable/me" >
</ImageButton>
<ImageButton
android:id="@+id/MapCenterButton"
android:layout_width="70px"
android:layout_height="70px"
android:layout_alignParentRight="true"
android:layout_gravity="right"
android:layout_marginRight="5px"
android:src="@drawable/fadenkreuz_klein" />
<Button
android:id="@+id/MapNextButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableRight="@drawable/androidmarker" >
</Button>
</RelativeLayout>
</RelativeLayout>
34
我知道這是一個古老的線程,但它在搜索結果頂部顯示出來所以我想,這不能傷害確認
android:layout_alignParentBottom="true"
工作了我在RelativeLayout中。
相關問題
- 1. Android如何將RelativeLayout對齊到底部?
- 2. 的Android RelativeLayout的底部
- 3. 將堆棧對齊到RelativeLayout的底部?
- 4. Android RelativeLayout Button above TextView
- 5. Android RelativeLayout添加layout_alignParentBottom將佈局推送到屏幕底部
- 6. RelativeLayout總是在底部
- 7. 如何將RelativeLayout放置在RelativeLayout的底部?
- 8. 如何將winform調整到頂部而不是底部c#
- 9. Android中的RelativeLayout的底部以及頂部的視圖定位
- 10. 無法將ImageView對齊到RelativeLayout的底部
- 11. 底部寬度不調整
- 12. LinearLayout在ScrollView和RelativeLayout屏幕的底部
- 13. 的RelativeLayout - 保持片段底部
- 14. 的RelativeLayout,滾動型和底部
- 15. RelativeLayout重力底?
- 16. 的RelativeLayout對齊父底部不在底部
- 17. RelativeLayout - 調整TextView的位置
- 18. GridView與圖像對齊在RelativeLayout底部
- 19. Highcharts categories將yAxis.labels.y調整到泳道底部
- 20. Android EditText固定在WVGA上的RelativeLayout消失的底部
- 21. RelativeLayout底部的兩個接近其他的按鈕 - Android
- 22. 刪除從底部的邊緣在Android Relativelayout
- 23. 如何在Android中僅給出RelativeLayout的底部邊框
- 24. RelativeLayout底部的Android Shadow在界限之外
- 25. 動態添加視圖到RelativeLayout的底部
- 26. 如何調整stetched textField底部的textField?
- 27. 用打開的鍵盤滾動到底部並調整滑塊
- 28. 帶有錨定頂部和底部的RelativeLayout?
- 29. 當元素被隱藏時,Chrome不會將文檔的底部調整到窗口的底部
- 30. Google Chrome&FB Like Button頁面底部
您將不得不向我們展示您的xml。 – Falmarri 2011-01-12 22:00:15