diff options
author | Camil Staps | 2015-06-04 14:57:30 +0200 |
---|---|---|
committer | Camil Staps | 2015-06-04 14:57:30 +0200 |
commit | 7b7d6e3f0c7abd24b1174875c40e15b6dd1dbde1 (patch) | |
tree | 1862341076f5c408dd7d5d41eced10dc9f106476 /app/src/main/res/layout/item_navigation_drawer.xml | |
parent | Merge branch 'app' of github:camilstaps/RSSin into app (diff) | |
parent | Added 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-x | app/src/main/res/layout/item_navigation_drawer.xml | 29 |
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 |