我正在尝试在 Android 的 2 列表中右对齐微调器。
这是我到目前为止所尝试的:
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/object_background">
<TableRow>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Test"/>
<Spinner
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="right"
android:gravity="right"/>
</TableRow>