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 に答える