0

我正在尝试使我的应用程序右侧的编辑文本和微调器对齐并且大小相同,但我似乎无法更改微调器的宽度。我已经弄清楚如何更改微调器中单词中显示的字符数量,但我不知道如何更改实际微调器的大小。有什么建议么?这是我的微调器布局的 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);
4

2 回答 2

1

将您的 layout_width 和 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" />
于 2012-07-11T13:11:06.043 回答
0

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

 ArrayAdapter NoCoreAdapter =  new ArrayAdapter(this,android.R.layout.simple_spinner_item,  month);
于 2012-07-11T13:11:29.387 回答