In the picture above (tablet landscape mode), any way I can minimize the Dropdown width of a Spinner? Or create a Custom Dropdown perhaps? Thanks.
Edit: I'm just using this android's own layout. spinner.setDropDownViewResource(android.R.layout.simple_dropdown_item_1line);
XML Added:
<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>