Newer
Older
mountainnavigation / app / src / main / res / layout / drawer_list_item.xml
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <TableRow
        android:layout_height="35dp">
        <View
            android:layout_height="match_parent"
            android:layout_width="12dp">

        </View>
        <ImageView
            android:id="@+id/toggleEntryImg"
            android:layout_width="25dp"
            android:layout_height="25dp"/>
        <View
            android:layout_height="match_parent"
            android:layout_width="12dp">

        </View>
        <TextView
            android:id="@+id/toggleEntryDesc"
            android:layout_width="wrap_content"
            android:layout_height="25dp"
            android:layout_gravity="center"
            android:gravity="center"/>

    </TableRow>
</TableLayout>
    <!--<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/toggleEntryCB"
    android:focusable="false"
    android:focusableInTouchMode="false"
    android:clickable="false"/>-->