aboutsummaryrefslogtreecommitdiff
path: root/sample/src/main/res
diff options
context:
space:
mode:
Diffstat (limited to 'sample/src/main/res')
-rw-r--r--sample/src/main/res/layout/activity_swipe.xml74
-rw-r--r--sample/src/main/res/values/strings.xml1
-rw-r--r--sample/src/main/res/values/styles.xml5
-rw-r--r--sample/src/main/res/xml/kau_changelog.xml12
4 files changed, 90 insertions, 2 deletions
diff --git a/sample/src/main/res/layout/activity_swipe.xml b/sample/src/main/res/layout/activity_swipe.xml
new file mode 100644
index 0000000..c65bebc
--- /dev/null
+++ b/sample/src/main/res/layout/activity_swipe.xml
@@ -0,0 +1,74 @@
+<?xml version="1.0" encoding="utf-8"?>
+<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:app="http://schemas.android.com/apk/res-auto"
+ xmlns:tools="http://schemas.android.com/tools"
+ android:id="@+id/swipe_container"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ tools:context=".SwipeActivity"
+ tools:ignore="HardcodedText">
+
+ <android.support.v7.widget.Toolbar
+ android:id="@+id/swipe_toolbar"
+ android:layout_width="0dp"
+ android:layout_height="?attr/actionBarSize"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toTopOf="parent" />
+
+ <Button
+ android:id="@+id/swipe_from_left"
+ style="@style/ClearButton"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="With left"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintHorizontal_bias="0.25"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/swipe_toolbar"
+ app:layout_constraintVertical_bias="0.5" />
+
+ <Button
+ android:id="@+id/swipe_from_right"
+ style="@style/ClearButton"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="With right"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintHorizontal_bias="0.75"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/swipe_toolbar"
+ app:layout_constraintVertical_bias="0.5" />
+
+
+ <Button
+ android:id="@+id/swipe_from_top"
+ style="@style/ClearButton"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="With top"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintHorizontal_bias="0.5"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/swipe_toolbar"
+ app:layout_constraintVertical_bias="0.25" />
+
+
+ <Button
+ android:id="@+id/swipe_from_bottom"
+ style="@style/ClearButton"
+ android:layout_width="wrap_content"
+ android:layout_height="wrap_content"
+ android:text="With bottom"
+ app:layout_constraintBottom_toBottomOf="parent"
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintHorizontal_bias="0.5"
+ app:layout_constraintStart_toStartOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/swipe_toolbar"
+ app:layout_constraintVertical_bias="0.75" />
+
+
+</android.support.constraint.ConstraintLayout> \ No newline at end of file
diff --git a/sample/src/main/res/values/strings.xml b/sample/src/main/res/values/strings.xml
index 11a897a..086b27b 100644
--- a/sample/src/main/res/values/strings.xml
+++ b/sample/src/main/res/values/strings.xml
@@ -19,6 +19,7 @@
<string name="sub_item_desc">Press this to view the next subset of preferences</string>
<string name="your_email">your.email@here.com</string>
<string name="your_subject">Your subject</string>
+ <string name="swipe_showcase">Swipe Showcase</string>
<string name="image_showcase">Image Showcase</string>
<string name="video_overlay_showcase">Video Overlay Showcase</string>
<string name="adapter_showcase">Adapter Showcase</string>
diff --git a/sample/src/main/res/values/styles.xml b/sample/src/main/res/values/styles.xml
index 15c1745..e488cec 100644
--- a/sample/src/main/res/values/styles.xml
+++ b/sample/src/main/res/values/styles.xml
@@ -23,4 +23,9 @@
<item name="android:windowAnimationStyle">@style/KauSlideInSlideOutRight</item>
</style>
+ <style name="ClearButton">
+ <item name="android:background">?android:selectableItemBackground</item>
+ <item name="android:padding">@dimen/kau_padding_normal</item>
+ </style>
+
</resources>
diff --git a/sample/src/main/res/xml/kau_changelog.xml b/sample/src/main/res/xml/kau_changelog.xml
index df6ec2b..d505bcf 100644
--- a/sample/src/main/res/xml/kau_changelog.xml
+++ b/sample/src/main/res/xml/kau_changelog.xml
@@ -6,10 +6,18 @@
<item text="" />
-->
+ <version title="v3.2.4"/>
+ <item text=":core: Fix FAQ background" />
+ <item text=":core: Create FileUtils" />
+ <item text=":core: Create NotificationUtils" />
+ <item text=":core-ui: Move reactive libs to :searchview:" />
+ <item text="" />
+ <item text="" />
+
<version title="v3.2.3"/>
<item text=":about: Modularize everything" />
- <item text=":about: Create faq panel" />
- <item text=":core: Create faq parser" />
+ <item text=":about: Create FAQ panel" />
+ <item text=":core: Create FAQ parser" />
<item text=":core: Create collapsible view delegate" />
<item text=":mediapicker: Allow for prefetching by default for videos" />