我想减少/更改微调器大小,包括:
答案 0 :(得分:34)
您可以在布局文件中更改这些设置。 hello-spinner教程非常有用。
http://developer.android.com/guide/tutorials/views/hello-spinner.html
将新XML文件添加到布局文件夹中。
示例:spinnerLayout.xml
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/spinnerTarget"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="14pt"
android:textColor="#FF8B1500"
android:gravity="center"/>
将适配器资源更改为新的布局文件:
adapter = ArrayAdapter.createFromResource(
this, R.array.sound, R.layout.spinnerLayout);
答案 1 :(得分:7)
android:padding="0dip"
在我的微调器中使用
使其变小android.R.layout.simple_spinner_item
制作数组适配器时似乎也使它变小了,但我不知道这是否是一个理智的事情。