我想将一个按钮对齐到屏幕的最右侧,但我无法做到这一点。我无法在这里使用alignParentRight字段。这是代码:
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/arrow_left"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/arrow_left"/>
<TextView
android:id="@+id/day_of_the_week"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<Button
android:id="@+id/arrow_right"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:
android:background="@drawable/arrow_right"/>
</LinearLayout>
我该怎么办?我该如何解决?