aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/details_item.xml
diff options
context:
space:
mode:
authorScott Jackson <daneren2005@gmail.com>2015-08-21 17:03:43 -0700
committerScott Jackson <daneren2005@gmail.com>2015-08-21 17:03:43 -0700
commitc777c62aea3a7b251e8f6c907a60ebf35ddbb8c8 (patch)
tree15df7a7ea0fdd94e89ba0113d8e1b186eef4d93d /app/src/main/res/layout/details_item.xml
parent9f597b5135b85b99755cd791e32796b89fbf81dd (diff)
parent5a175f3b94cb8b5bd078e373f4a25b7ab65c4cc8 (diff)
downloaddsub-c777c62aea3a7b251e8f6c907a60ebf35ddbb8c8.tar.gz
dsub-c777c62aea3a7b251e8f6c907a60ebf35ddbb8c8.tar.bz2
dsub-c777c62aea3a7b251e8f6c907a60ebf35ddbb8c8.zip
Merge branch 'SlideUpPanel2'
Diffstat (limited to 'app/src/main/res/layout/details_item.xml')
-rw-r--r--app/src/main/res/layout/details_item.xml28
1 files changed, 28 insertions, 0 deletions
diff --git a/app/src/main/res/layout/details_item.xml b/app/src/main/res/layout/details_item.xml
new file mode 100644
index 00000000..4ef5fef0
--- /dev/null
+++ b/app/src/main/res/layout/details_item.xml
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="utf-8"?>
+<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ android:orientation="horizontal"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:padding="8dp">
+
+ <TextView
+ android:id="@+id/detail_name"
+ android:layout_width="0dip"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:textAppearance="?android:attr/textAppearanceMedium"
+ android:textColor="?android:textColorPrimary"
+ android:paddingLeft="14dp"
+ android:layout_gravity="center_vertical"/>
+
+ <TextView
+ android:id="@+id/detail_value"
+ android:layout_width="0dip"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:textAppearance="?android:attr/textAppearanceSmall"
+ android:textColor="?android:textColorSecondary"
+ android:paddingLeft="14dp"
+ android:layout_gravity="center_vertical"/>
+
+</LinearLayout> \ No newline at end of file