0
A
回答
0
你必須改變了一下週圍的東西,你不能把視圖相對於父母的父。
您需要一個RelativeLayout作爲根佈局,然後將藍線垂直居中。然後,您會將紅色LinearLayouts放置在藍色佈局的上方和下方。類似這樣的:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<View
android:id="@+id/blue_layout"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_centerVertical="true"
android:background="#ff0000ff" />
<LinearLayout
android:id="@+id/above"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_above="@id/blue_layout"
android:orientation="vertical">
</LinearLayout>
<LinearLayout
android:id="@+id/below"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/blue_layout"
android:orientation="vertical">
</LinearLayout>
</RelativeLayout>
相關問題
- 1. 絕對父母對祖父母的位置元素
- 2. 佈置父母的父母
- 3. 父母的父母的父母
- 4. 位置固定支持父母絕對
- 5. 位置:絕對和父母身高?
- 6. 父母的絕對孩子不正確填寫父母背景
- 7. 父母對父母溝通的反應
- 8. 父母雙親父母對象div
- 9. 誰是這個絕對位置元素的參考:浮動父母還是絕對祖父母?
- 10. Knockout foreach $ parent指示祖父母而不是父母
- 11. CSS的父母位置
- 12. SpriteKit父母(s)之後父母的SKNode視覺位置是否被旋轉?
- 13. 絕對定位div被父母切斷。
- 14. CSS:獨立於父母的位置,不使用位置:絕對
- 15. jQuery的父母()和父母()。父母()只看到一個層次?
- 16. LINQ組由父母和父母的父母
- 17. 不是由父母
- 18. 誰是父母?
- 19. 驗證祖父母:兩個父母有同一個父母嗎?
- 20. 獲取div的父母的父母
- 21. 窗口父母位置?
- 22. 使用JQuery獲得父母的父母
- 23. Less CSS - 父母的反向父母
- 24. SASS - 父母的參考父母
- 25. 覆蓋父母的父母在PHP
- 26. 根據父母父母的父母尺寸設置寬度和高度Android Studio
- 27. 對父母的UIViewController
- 28. 固定元件位置與父母而不是視
- 29. 絕對定位的圖像是相對於絕對定位父母的定位
- 30. linq:祖父母 - 父母 - 子女查詢
非常感謝。這幫助了我。 –