こんにちは私は画像のようにドロップダウンリストが必要です
そのための私のコードは次のとおりです:-
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="35dip"
android:orientation="horizontal" >
<TextView
android:layout_width="60dip"
android:layout_height="wrap_content"
android:layout_marginLeft="15dip"
android:text="Picture"
android:textColor="#000000"
android:textSize="18dip" />
<View
android:layout_width="34dp"
android:layout_height="40dip" />
<Spinner
android:id="@+id/picturelist"
android:layout_width="206dp"
android:layout_height="30dip"
android:ellipsize="end"
android:gravity="center"
android:imeOptions="actionNext"
android:singleLine="true"
android:entries="@array/picture_arrays"
android:prompt="@string/prompt"
android:textColor="#000000" />
</LinearLayout>
ただし、出力は画像のようになります:-
誰か助けてください。