自定义微调器宽度的问题

时间:2012-07-11 13:07:28

标签: android width spinner

我正在尝试使我的应用程序右侧的编辑文本和微调器对齐并且大小相同,但我似乎无法改变微调器的宽度。我已经想出如何更改微调器中单词中显示的字符数量,但我无法弄清楚如何更改实际微调器的大小。有什么建议?这是我的微调器布局的xml:

spinner_layout.xml:

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/title_text_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:maxLength="15" />

这就是我在我的活动中称呼它的方式:

ArrayAdapter<String> dataAdapter = new ArrayAdapter<String>(this,R.layout.spinner_layout,actions);
dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
spinner.setAdapter(dataAdapter);

2 个答案:

答案 0 :(得分:1)

更改layout_width&amp; layout_height为“wrap_content”。然后它会改变。

代码:

<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/title_text_view"
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:gravity="center" />

答案 1 :(得分:0)

尝试更改代码,它可能对您有所帮助。

 ArrayAdapter NoCoreAdapter =  new ArrayAdapter(this,android.R.layout.simple_spinner_item,  month);