29 lines
987 B
XML
29 lines
987 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:layout_centerVertical="true"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:focusable="false"
|
|
android:id="@+id/listviewdrawermenuImageView1"
|
|
tools:ignore="ContentDescription"/>
|
|
|
|
<TextView
|
|
android:layout_centerVertical="true"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_toEndOf="@id/listviewdrawermenuImageView1"
|
|
android:textSize="18sp"
|
|
android:text="AndroidGoodies"
|
|
android:id="@+id/listviewdrawermenuTextView1"/>
|
|
|
|
</RelativeLayout>
|