我试图让三个按钮彼此相邻,左一个和右一个是小按钮,中间一个应该填满其余的宽度 - 2x2dp(=margin)。
我编写了以下代码,但它一直将我的右键从屏幕上推开,关于如何解决这个问题的任何想法?可能有一种方法可以授予左侧和右侧的特权?
<RelativeLayout
android:id="@+id/rl"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_marginBottom="10dp" >
<Button
android:id="@+id/bPreviousQuestion"
android:layout_width="42dp"
android:layout_height="42dp"
android:background="#c8c8c8"
android:text="<"
android:textColor="#ffffff"
android:textSize="20dp"
/>
<Button
android:id="@+id/bBack"
android:layout_width="fill_parent"
android:layout_height="42dp"
android:layout_toRightOf="@+id/bPreviousQuestion"
android:background="#c8c8c8"
android:text="Go Back"
android:textColor="#ffffff"
android:textSize="20dp"
android:layout_marginLeft="2dp"
android:layout_marginRight="2dp" />
<Button
android:id="@+id/bNextQuestion"
android:layout_width="42dp"
android:layout_height="42dp"
android:layout_toRightOf="@+id/bBack"
android:background="#c8c8c8"
android:text=">"
android:textColor="#ffffff"
android:textSize="20dp" />
</RelativeLayout>