aboutsummaryrefslogtreecommitdiff
path: root/library/src/main/res/layout/kau_about_item_library.xml
diff options
context:
space:
mode:
authorAllan Wang <me@allanwang.ca>2017-06-27 20:00:44 -0700
committerAllan Wang <me@allanwang.ca>2017-06-27 20:00:44 -0700
commita6ee77a4f1d78252b15059d51f2533fa03483d8c (patch)
treeb27b4a9cddfccce6f1edcdcdffba92c08bf33642 /library/src/main/res/layout/kau_about_item_library.xml
parent8179e50208192e2b18b4df3bfc100d9cf779891a (diff)
downloadkau-a6ee77a4f1d78252b15059d51f2533fa03483d8c.tar.gz
kau-a6ee77a4f1d78252b15059d51f2533fa03483d8c.tar.bz2
kau-a6ee77a4f1d78252b15059d51f2533fa03483d8c.zip
Testing about activity and chained adapters
Diffstat (limited to 'library/src/main/res/layout/kau_about_item_library.xml')
-rw-r--r--library/src/main/res/layout/kau_about_item_library.xml107
1 files changed, 107 insertions, 0 deletions
diff --git a/library/src/main/res/layout/kau_about_item_library.xml b/library/src/main/res/layout/kau_about_item_library.xml
new file mode 100644
index 0000000..5730d67
--- /dev/null
+++ b/library/src/main/res/layout/kau_about_item_library.xml
@@ -0,0 +1,107 @@
+<?xml version="1.0" encoding="utf-8"?>
+<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:id="@id/rippleForegroundListenerView"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_marginBottom="8dp"
+ android:layout_marginTop="8dp"
+ android:clickable="true"
+ android:foreground="?selectableItemBackground"
+ android:layoutDirection="ltr">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:orientation="vertical"
+ android:padding="6dp">
+
+ <LinearLayout
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center_vertical"
+ android:orientation="horizontal"
+ android:paddingLeft="8dp"
+ android:paddingRight="8dp">
+
+ <TextView
+ android:id="@+id/libraryName"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_weight="5"
+ android:ellipsize="end"
+ android:gravity="start"
+ android:maxLines="1"
+ android:textSize="@dimen/textSizeLarge_openSource"
+ android:textStyle="normal"
+ tools:text="Library name" />
+
+ <TextView
+ android:id="@+id/libraryCreator"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_marginTop="2dp"
+ android:layout_weight="2"
+ android:gravity="end"
+ android:maxLines="2"
+ android:textSize="@dimen/textSizeSmall_openSource"
+ android:textStyle="normal"
+ tools:text="Creator" />
+ </LinearLayout>
+
+ <View
+ android:id="@+id/libraryDescriptionDivider"
+ android:layout_width="match_parent"
+ android:layout_height="1px"
+ android:layout_marginTop="4dp" />
+
+ <TextView
+ android:id="@+id/libraryDescription"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:maxLines="20"
+ android:padding="8dp"
+ android:textSize="@dimen/textSizeSmall_openSource"
+ android:textStyle="normal"
+ tools:text="Description"/>
+
+ <View
+ android:id="@+id/libraryBottomDivider"
+ android:layout_width="match_parent"
+ android:layout_height="1px"
+ android:layout_marginTop="4dp" />
+
+ <LinearLayout
+ android:id="@+id/libraryBottomContainer"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:gravity="center_vertical"
+ android:orientation="horizontal"
+ android:paddingLeft="8dp"
+ android:paddingRight="8dp"
+ android:paddingTop="4dp">
+
+ <TextView
+ android:id="@+id/libraryVersion"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:gravity="start"
+ android:maxLines="1"
+ android:textSize="@dimen/textSizeSmall_openSource"
+ android:textStyle="normal"
+ tools:text="Version" />
+
+ <TextView
+ android:id="@+id/libraryLicense"
+ android:layout_width="0dp"
+ android:layout_height="wrap_content"
+ android:layout_weight="1"
+ android:gravity="end"
+ android:maxLines="1"
+ android:textSize="@dimen/textSizeSmall_openSource"
+ android:textStyle="normal"
+ tools:text="License" />
+ </LinearLayout>
+ </LinearLayout>
+</android.support.v7.widget.CardView> \ No newline at end of file