佈局應該在第一個佈局底部對齊一半,在第二個佈局頂部對齊一半,我對搜索沒有任何線索。任何人都幫助我! ] 1Android如何在兩個佈局頂部佈局佈局
回答
這將在所有的決議,工作正確的 -
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="5">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight="3"
android:background="#000000" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="2">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="#000000" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="#000000" />
</LinearLayout>
<LinearLayout
android:layout_width="150dp"
android:layout_height="100dp"
android:layout_centerInParent="true"
android:background="@color/colorAccent" />
</RelativeLayout>
</LinearLayout>
這將適用於所有分辨率 –
這對所有分辨率,一點壽,我編輯它刪除最外面的RelativeLayout。只是等待審稿人確認.. :) –
是!工作正常。我只想要這個肖像模式。謝謝@Jyotman Singh –
所以我繼續嘗試了這一點,併成功地做這樣的事情..
下面是一個簡單的代碼,以幫助您:
<?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">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="5">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight="3"
android:background="#000000" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="#000000" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="#000000" />
</LinearLayout>
<LinearLayout
android:layout_width="150dp"
android:layout_height="100dp"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="50dp"
android:background="@color/colorAccent" />
</RelativeLayout>
有關如何使用RelativeLayout的更多信息,可以查看官方Android開發者網站 - RelativeLayout。 希望這有助於。
好的工作@ sept。 –
@Amit Vaghela謝謝! :) –
對不起@ sept,但我不知道爲什麼這是upvotes。這是錯誤的。設置marginBottom 50dp以獲得佈局在中心只是一種僥倖。它將出現在不同分辨率手機的不同位置。 –
- 1. 對齊佈局頂部,其他佈局
- 2. 佈局佈局,頂部佈局的中心背景圖片
- 3. 如何將佈局添加到另一個佈局的頂部?
- 4. Android佈局在另外兩個佈局的中間放置一個佈局
- 5. Android佈局文件夾:佈局,佈局端口,佈局區域
- 6. 在另一個佈局的頂部添加布局
- 7. 在整個佈局頂部拉伸div的流體佈局
- 8. Android的佈局 - 像佈局
- 9. Android:相對佈局佈局
- 10. Android佈局 - 位置佈局
- 11. Android layoutdisplay,佈局佈局。
- 12. 佈局佈局
- 13. 五部分頂部佈局
- 14. 在空佈局jframe上佈局佈局
- 15. Android - 兩列布局
- 16. Android兩列布局
- 17. 佈局不顯示從頂部在Android
- 18. SeekBar在Android的佈局頂部
- 19. android listview不會貼在佈局頂部
- 20. 佈局內部佈局在R
- 21. android佈局 - 頂部和底部
- 22. 如何在佈局頂部繪製
- 23. Iniciolice佈局頂部位置
- 24. AdMob聯播:「頂部」佈局
- 25. 如何在相對佈局內放置兩個佈局
- 26. 佈局,佈局大,佈局正常等
- 27. Android畫布佈局
- 28. Android佈局如何?
- 29. Android。在佈局
- 30. 如何佈局根頂級
它很容易的兄弟......首先你嘗試過什麼? –
你有沒有做過任何初始代碼?你可以發佈嗎?並明確回答這個問題..只需使用*** RelativeLayout ***作爲主要的父母佈局。 –
Framelayout可以用來創建這個。 http://developer.android.com/reference/android/widget/FrameLayout.html – Stallion