我想獲得一個相對佈局來環繞一個按鈕。它看起來像這樣:如何獲得相對佈局高度以環繞按鈕?
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
style="@style/Theme.MyCompany.Button.Container"
android:layout_weight="10">
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_gravity="center"
style="@style/Theme.MyCompany.Button.MyList"
android:id="@+id/this is my button"
android:text="@string/this_is_my_button"/>
</RelativeLayout>
它在寬度方面很好,但高度達到上述LinearLayout。
我試圖通過創建一個白色按鈕主題來破解它,但它只是創建一個更輕的視圖。
我該如何讓這個按鈕出現在頁面的底部,有沒有容器的好處?
這個傳說中的「LinearLayout」在哪裏? – tachyonflux 2015-03-31 02:00:54