aboutsummaryrefslogtreecommitdiff
path: root/WordPress/src/main/res/layout/categories_row_parent.xml
diff options
context:
space:
mode:
Diffstat (limited to 'WordPress/src/main/res/layout/categories_row_parent.xml')
-rw-r--r--WordPress/src/main/res/layout/categories_row_parent.xml25
1 files changed, 25 insertions, 0 deletions
diff --git a/WordPress/src/main/res/layout/categories_row_parent.xml b/WordPress/src/main/res/layout/categories_row_parent.xml
new file mode 100644
index 000000000..06a0d6a7d
--- /dev/null
+++ b/WordPress/src/main/res/layout/categories_row_parent.xml
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="utf-8"?>
+
+<LinearLayout 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_parent_spinner_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"/>
+ <TextView
+ 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"/>
+</LinearLayout> \ No newline at end of file