我有两个问题。
- 如何让下图中的微调器更接近文本?
我使用以下 xml 布局
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="4">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Check by"
android:layout_weight="1"
android:textSize="20dp"/>
<Spinner
android:id="@+id/CheckBy"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textSize="20dp"
android:enabled="false"/>
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:text="Outcome"
android:layout_weight="1"
android:textSize="20dp"/>
<Spinner
android:id="@+id/Outcome"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textSize="20dp"
android:enabled="false"/>
</LinearLayout>
- 如何更改回车按钮的文本,如下图所示,并指定单击时要执行的操作?