diff options
author | Allan Wang <me@allanwang.ca> | 2017-06-28 17:08:20 -0700 |
---|---|---|
committer | Allan Wang <me@allanwang.ca> | 2017-06-28 17:08:20 -0700 |
commit | d52c787508bf5ba0023946228468731a82a1132d (patch) | |
tree | a5048581dc74c9f0a87d43d83eb7e7d2c69ff309 /library/src/main/res/layout/kau_recycler_textslider.xml | |
parent | 0d7bf678f84f60a11e7c7cdbaa31bfe6ef21166c (diff) | |
download | kau-d52c787508bf5ba0023946228468731a82a1132d.tar.gz kau-d52c787508bf5ba0023946228468731a82a1132d.tar.bz2 kau-d52c787508bf5ba0023946228468731a82a1132d.zip |
Beginning of overlaying about activity
Diffstat (limited to 'library/src/main/res/layout/kau_recycler_textslider.xml')
-rw-r--r-- | library/src/main/res/layout/kau_recycler_textslider.xml | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/library/src/main/res/layout/kau_recycler_textslider.xml b/library/src/main/res/layout/kau_recycler_textslider.xml new file mode 100644 index 0000000..f051902 --- /dev/null +++ b/library/src/main/res/layout/kau_recycler_textslider.xml @@ -0,0 +1,34 @@ +<?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" + android:id="@+id/kau_container" + android:layout_width="match_parent" + android:layout_height="match_parent"> + + <android.support.v7.widget.Toolbar + android:id="@+id/kau_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"> + + <ca.allanwang.kau.widgets.KauTextSlider + android:id="@+id/kau_toolbar_text" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:gravity="center" + app:kau_animation_type="slide_vertical" /> + + </android.support.v7.widget.Toolbar> + + <android.support.v7.widget.RecyclerView + android:id="@+id/kau_recycler" + android:layout_width="0dp" + android:layout_height="0dp" + app:layout_constraintBottom_toBottomOf="parent" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@id/kau_toolbar" /> + +</android.support.constraint.ConstraintLayout> |