我希望我的单选按钮的宽度与屏幕匹配,并且其文本与屏幕的左侧对齐,按钮与右侧对齐。目前,我的布局如下:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<RadioGroup
android:id="@+id/optionsContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/sortingOptionRadioButton"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
xmlns:tools="http://schemas.android.com/tools"
android:layoutDirection="rtl"
android:text="Popularity"
android:layout_margin="@dimen/e2_space_small"
/>
</RadioGroup>
</LinearLayout>
在预览中,它看起来就像我想要的,但是当我在设备上启动该应用程序时,文本和按钮都与右侧对齐。 如何使文本和按钮与两边对齐?
答案 0 :(得分:1)
尝试通过在单选按钮组和单选按钮中添加布局重力和引力属性
android:layout_gravity="start"
android:gravity="left"