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/menu/menu_main.xml16
-rw-r--r--sample/src/main/res/xml/kau_changelog.xml13
-rw-r--r--sample/src/main/res/xml/kau_faq.xml14
3 files changed, 30 insertions, 13 deletions
diff --git a/sample/src/main/res/menu/menu_main.xml b/sample/src/main/res/menu/menu_main.xml
index 039c2c9..f8933f3 100644
--- a/sample/src/main/res/menu/menu_main.xml
+++ b/sample/src/main/res/menu/menu_main.xml
@@ -1,13 +1,19 @@
<menu 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"
- tools:context="com.pitchedapps.myapplication.MainActivity">
+ tools:context="ca.allanwang.kau.sample.MainActivity">
<item
android:id="@+id/action_search"
android:orderInCategory="90"
android:title="@string/kau_search"
- app:showAsAction="always|collapseActionView" />
+ app:showAsAction="always" />
+
+ <item
+ android:id="@+id/action_changelog"
+ android:orderInCategory="95"
+ android:title="@string/kau_changelog"
+ app:showAsAction="never" />
<item
android:id="@+id/action_settings"
@@ -21,11 +27,5 @@
android:title="@string/kau_send_feedback"
app:showAsAction="never" />
- <item
- android:id="@+id/test"
- android:orderInCategory="300"
- android:title="Test"
- app:showAsAction="never" />
-
</menu>
diff --git a/sample/src/main/res/xml/kau_changelog.xml b/sample/src/main/res/xml/kau_changelog.xml
index db6a504..df6ec2b 100644
--- a/sample/src/main/res/xml/kau_changelog.xml
+++ b/sample/src/main/res/xml/kau_changelog.xml
@@ -6,14 +6,17 @@
<item text="" />
-->
- <version title="v3.2.2"/>
- <item text=":core: Add simple KauBaseActivity so that activities extending AppCompatActivity can have some default kau helpers implemented" />
- <item text=":core: The permission manager will now notify you if you try to request a permission that isn\'t added to your manifest" />
+ <version title="v3.2.3"/>
+ <item text=":about: Modularize everything" />
+ <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" />
+
+ <version title="v3.2.2"/>
+ <item text=":core: Add simple KauBaseActivity so that activities extending AppCompatActivity can have some default kau helpers implemented" />
+ <item text=":core: The permission manager will now notify you if you try to request a permission that isn\'t added to your manifest" />
<item text="Begin writing android tests" />
- <item text="" />
- <item text="" />
<version title="v3.2.1"/>
<item text=":core: Remove requestLayout call from setMargin and setPadding" />
diff --git a/sample/src/main/res/xml/kau_faq.xml b/sample/src/main/res/xml/kau_faq.xml
new file mode 100644
index 0000000..5230a31
--- /dev/null
+++ b/sample/src/main/res/xml/kau_faq.xml
@@ -0,0 +1,14 @@
+<?xml version="1.0" encoding="utf-8"?>
+<resources>
+
+ <question>This is a FAQ question</question>
+ <answer>This is a FAQ answer</answer>
+ <question><![CDATA[Supports <b>HTML</b> <i>tags</i>]]></question>
+ <answer><![CDATA[Both <u>questions</u> and <u>answers</u> are automatically parsed with <b>HTML</b>]]></answer>
+ <question>Links</question>
+ <answer><![CDATA[<ul>
+ <li><a href="https://github.com/AllanWang/KAU">Github</a><li>
+ <li><a href="https://allanwang.github.io/KAU">Page</a><li>
+ <li><a href="https://play.google.com/store/apps/details?id=ca.allanwang.kau.sample&utm_source=sample">Play Store</a><li>
+ </ul>]]></answer>
+</resources> \ No newline at end of file