diff options
author | Alex Ning <chineseperson5@gmail.com> | 2021-07-02 15:16:18 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2021-07-02 15:16:18 +0000 |
commit | e3578c59dd7cb65c3d78a1bd219d05577472a0b6 (patch) | |
tree | a7bb0b3a04035d210fd6f38c80feafc39288b41c /app/src/main/res/layout/activity_motion_test.xml | |
parent | 992cf0dda12f16f19baec2f7ec6197da314a9096 (diff) | |
download | infinity-for-reddit-e3578c59dd7cb65c3d78a1bd219d05577472a0b6.tar infinity-for-reddit-e3578c59dd7cb65c3d78a1bd219d05577472a0b6.tar.gz infinity-for-reddit-e3578c59dd7cb65c3d78a1bd219d05577472a0b6.tar.bz2 infinity-for-reddit-e3578c59dd7cb65c3d78a1bd219d05577472a0b6.tar.lz infinity-for-reddit-e3578c59dd7cb65c3d78a1bd219d05577472a0b6.tar.xz infinity-for-reddit-e3578c59dd7cb65c3d78a1bd219d05577472a0b6.tar.zst infinity-for-reddit-e3578c59dd7cb65c3d78a1bd219d05577472a0b6.zip |
Save light, dark and amoled Material You themes to database. Add 'Apply Material You' option. Test MotionLayout.
Diffstat (limited to 'app/src/main/res/layout/activity_motion_test.xml')
-rw-r--r-- | app/src/main/res/layout/activity_motion_test.xml | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_motion_test.xml b/app/src/main/res/layout/activity_motion_test.xml new file mode 100644 index 00000000..c65afba9 --- /dev/null +++ b/app/src/main/res/layout/activity_motion_test.xml @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="utf-8"?> +<ml.docilealligator.infinityforreddit.customviews.ClickableMotionLayout 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:layout_width="match_parent" + android:layout_height="match_parent" + android:id="@+id/motion_layout" + tools:context=".activities.MotionTestActivity" + app:layoutDescription="@xml/activity_motion_test_scene"> + + <View + android:id="@+id/button" + android:background="@color/colorAccent" + android:layout_width="64dp" + android:layout_height="64dp" /> + +</ml.docilealligator.infinityforreddit.customviews.ClickableMotionLayout>
\ No newline at end of file |