aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/item_navigation_drawer.xml
diff options
context:
space:
mode:
authorCamil Staps2015-06-04 14:57:30 +0200
committerCamil Staps2015-06-04 14:57:30 +0200
commit7b7d6e3f0c7abd24b1174875c40e15b6dd1dbde1 (patch)
tree1862341076f5c408dd7d5d41eced10dc9f106476 /app/src/main/res/layout/item_navigation_drawer.xml
parentMerge branch 'app' of github:camilstaps/RSSin into app (diff)
parentAdded hamburger menu, working filters and unified inbox. Open old UI by going... (diff)
Merge branch 'master' into app
Diffstat (limited to 'app/src/main/res/layout/item_navigation_drawer.xml')
-rwxr-xr-xapp/src/main/res/layout/item_navigation_drawer.xml29
1 files changed, 29 insertions, 0 deletions
diff --git a/app/src/main/res/layout/item_navigation_drawer.xml b/app/src/main/res/layout/item_navigation_drawer.xml
new file mode 100755
index 0000000..32a8837
--- /dev/null
+++ b/app/src/main/res/layout/item_navigation_drawer.xml
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout
+ xmlns:android="http://schemas.android.com/apk/res/android"
+ android:id="@+id/itemLayout"
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:layout_alignParentLeft="true"
+ android:orientation="vertical"
+
+ android:layout_marginTop="0dp"
+ android:background="?android:attr/activatedBackgroundIndicator"
+ >
+
+ <LinearLayout
+ android:layout_width="fill_parent"
+ android:layout_height="wrap_content"
+ android:minHeight="55dp"
+ >
+
+ <TextView
+ android:id="@+id/item_navigation_drawer_text"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:layout_margin="10dp"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ />
+ </LinearLayout>
+
+</LinearLayout> \ No newline at end of file