我想在Android的2列表中右對齊微調。微調對齊在TableView
這是我到目前爲止已經試過:
<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>