アプリケーションの右側にある編集テキストとスピナーをすべて同じサイズに揃えようとしていますが、スピナーの幅を変更できないようです。スピナーの単語に表示される文字の量を変更する方法を理解しましたが、実際のスピナーのサイズを変更する方法がわかりません。助言がありますか?これは、私のスピナー レイアウトの 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);