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