我制作了一个自定义微调器,但尺寸并不是我想要的。微调器变得非常大,以获得我需要的列表中的间距。我希望能够独立于微调器按钮的大小来调整微调器的行。我希望微调器很薄,然后我希望部分行间隔很大。(见底部图片):
目前微调器行的 xml 是这样的:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableRow android:id="@+id/tableRow1" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:padding="5dip">
<ImageView android:layout_width="32sp" android:src="@drawable/icon"
android:id="@+id/spinnerimage" android:layout_height="32sp" />
<TextView android:textSize="22sp" android:textStyle="bold" android:textColor="#000"
android:layout_width="fill_parent" android:id="@+id/category"
android:layout_height="fill_parent" android:paddingLeft="5sp" />
</TableRow>
</TableLayout>
我想使用相对布局,但表格布局给了我更好的间距。如果我尝试制作高度,它将切断行中的文本和图标。我的 main.xml 中的微调器是:
<Spinner android:id="@+id/catspinner"
android:layout_marginLeft="25dip" android:layout_marginRight="25dip"
android:layout_width="fill_parent" android:layout_centerHorizontal="true"
android:layout_height="wrap_content" android:prompt="@string/prompt"
android:background="@drawable/yellow_btn"
android:layout_centerVertical="true" android:drawSelectorOnTop="true" />
我想让微调器的尺寸与标准的 android 微调器(右侧)相同。我的当前已反转微调器太大而行间距太小。
有任何想法吗??