diff options
author | Allan Wang <me@allanwang.ca> | 2017-06-12 20:01:34 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-06-12 20:01:34 -0700 |
commit | 1805793c7cea8a3c56a8111e0a80d7ac5da95f63 (patch) | |
tree | 204a801f948e6f2e22b16ee5414da4b99c96a4bc /sample/src/main/res/layout | |
parent | 37a2059fa15f23093fc38bca236f517ef96b030d (diff) | |
download | kau-1805793c7cea8a3c56a8111e0a80d7ac5da95f63.tar.gz kau-1805793c7cea8a3c56a8111e0a80d7ac5da95f63.tar.bz2 kau-1805793c7cea8a3c56a8111e0a80d7ac5da95f63.zip |
Add sliding activities
Diffstat (limited to 'sample/src/main/res/layout')
-rw-r--r-- | sample/src/main/res/layout/sample.xml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/sample/src/main/res/layout/sample.xml b/sample/src/main/res/layout/sample.xml new file mode 100644 index 0000000..c237fda --- /dev/null +++ b/sample/src/main/res/layout/sample.xml @@ -0,0 +1,13 @@ +<?xml version="1.0" encoding="utf-8"?> +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_gravity="center" + android:orientation="vertical"> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:text="This is a sample" /> + +</LinearLayout>
\ No newline at end of file |