27 lines
906 B
XML
27 lines
906 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:id="@+id/LinearLayout2"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginBottom="8dp"
|
||
|
android:orientation="horizontal" >
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/imageView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_margin="4dp"
|
||
|
android:src="@drawable/test_drawer_icon" />
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/textView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center"
|
||
|
android:layout_margin="4dp"
|
||
|
android:text="TextView"
|
||
|
android:textColor="@color/text_white"
|
||
|
android:textSize="24sp" />
|
||
|
|
||
|
</LinearLayout>
|