我試圖創建一個類似於Google Music App的Heading +按鈕,例如哪裏有「詩經」頭在左邊,然後在右側有一個與文本「X多」的按鈕..RelativeLayout中的按鈕大小和填充
我使用的RelativeLayout爲TextView的和按鈕
我的問題是按鈕佔用了包含文本的佈局的大小,高度是全部錯誤的,並且填充似乎沒有做任何事情。
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
[REMOVED for clarity]
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/list_foreground"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dp"
android:text="@string/photos"
android:textAppearance="?android:attr/textAppearanceMedium" />
<Button
android:id="@+id/photo_button"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:background="@color/actionbar_background"
android:padding="10dp"
android:text="test" />
</RelativeLayout>
我在這裏做錯了什麼?