Files
baresip-studio/app/src/main/res/layout/account_spinner.xml
T
2018-02-20 05:01:26 +02:00

27 lines
788 B
XML

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/spinnerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TableRow
android:id="@+id/spinnerRow"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="5dip" >
<ImageView
android:id="@+id/spinnerImage"
android:contentDescription="@string/app_name" />
<TextView
android:id="@+id/spinnerText"
android:textSize="18dp"
android:paddingLeft="6dip"
android:textColor="@android:color/black" />
</TableRow>
</TableLayout>