上の写真(タブレットランドスケープモード)では、スピナーのドロップダウン幅を最小化する方法はありますか?または、おそらくカスタムドロップダウンを作成しますか?ありがとう。
編集:私はこのアンドロイド独自のレイアウトを使用しています。spinner.setDropDownViewResource(android.R.layout.simple_dropdown_item_1line);
追加されたXML:
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="horizontal"
android:layout_margin="5dp"
android:weightSum="3">
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Font Size"
android:textSize="15sp"
/>
<Spinner
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2"
/>
</LinearLayout>