22 lines
625 B
XML
22 lines
625 B
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<LinearLayout
|
||
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_marginTop="10dp"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:layout_marginStart="5dp"
|
||
|
|
android:layout_marginTop="16dp"
|
||
|
|
android:id="@+id/spinnertextsize"
|
||
|
|
android:textStyle="bold"
|
||
|
|
android:layout_marginBottom="5dp"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textSize="15dp" />
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
</LinearLayout>
|