aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/categories_row.xml
blob: 489b513c495d7e12c6264bcf2f001b9aca93782b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>

<org.wordpress.android.widgets.CheckedLinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="@dimen/category_row_height"
    android:orientation="horizontal"
    android:id="@+id/categoryRow"
    android:clickable="false">
    <ImageView android:layout_width="@dimen/category_row_height"
               android:layout_height="@dimen/category_row_height"
               app:srcCompat="@drawable/ic_level_indicator"
               android:id="@+id/categoryRowLevelIndicator" android:scaleType="fitEnd"/>
    <CheckedTextView
            android:orientation="vertical"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:gravity="center_vertical"
            android:textColor="#464646"
            android:paddingLeft="6dip"
            android:paddingRight="6dip"
            android:checkMark="?android:attr/listChoiceIndicatorMultiple"
            android:id="@+id/categoryRowText"/>
</org.wordpress.android.widgets.CheckedLinearLayout>