画面の一番右にボタンを配置したいのですが、できません。ここでは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>
私は何をすべきか?これを修正するにはどうすればよいですか?