diff options
author | Alex Ning <chineseperson5@gmail.com> | 2021-04-04 04:04:06 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2021-04-04 04:04:06 +0000 |
commit | dd98dd879dc5ecb3e513718c990bf9b3e4e66c71 (patch) | |
tree | 4bbcbb98b3dbbc19810a79c91990eb77857afd8f /app/src/main/res/layout | |
parent | b54e9aabb1b869b98c351705c06a1f91d5f0563a (diff) | |
download | infinity-for-reddit-dd98dd879dc5ecb3e513718c990bf9b3e4e66c71.tar infinity-for-reddit-dd98dd879dc5ecb3e513718c990bf9b3e4e66c71.tar.gz infinity-for-reddit-dd98dd879dc5ecb3e513718c990bf9b3e4e66c71.tar.bz2 infinity-for-reddit-dd98dd879dc5ecb3e513718c990bf9b3e4e66c71.tar.lz infinity-for-reddit-dd98dd879dc5ecb3e513718c990bf9b3e4e66c71.tar.xz infinity-for-reddit-dd98dd879dc5ecb3e513718c990bf9b3e4e66c71.tar.zst infinity-for-reddit-dd98dd879dc5ecb3e513718c990bf9b3e4e66c71.zip |
Anonymous subscriptions page is available.
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r-- | app/src/main/res/layout/activity_anonymous_subscriptions.xml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_anonymous_subscriptions.xml b/app/src/main/res/layout/activity_anonymous_subscriptions.xml new file mode 100644 index 00000000..85473583 --- /dev/null +++ b/app/src/main/res/layout/activity_anonymous_subscriptions.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="utf-8"?> +<androidx.coordinatorlayout.widget.CoordinatorLayout 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/coordinator_layout_anonymous_subscriptions_activity" + tools:context=".activities.AnonymousSubscriptionsActivity"> + + <com.google.android.material.appbar.AppBarLayout + android:id="@+id/appbar_layout_anonymous_subscriptions_activity" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:theme="@style/AppTheme.AppBarOverlay"> + + <com.google.android.material.appbar.CollapsingToolbarLayout + android:layout_width="match_parent" + android:layout_height="match_parent" + app:layout_scrollFlags="scroll|enterAlways" + app:titleEnabled="false" + app:toolbarId="@+id/toolbar_subreddit_selection_activity"> + + <androidx.appcompat.widget.Toolbar + android:id="@+id/toolbar_anonymous_subscriptions_activity" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:minHeight="?attr/actionBarSize" + app:popupTheme="@style/AppTheme.PopupOverlay" + app:navigationIcon="?attr/homeAsUpIndicator" /> + + </com.google.android.material.appbar.CollapsingToolbarLayout> + + </com.google.android.material.appbar.AppBarLayout> + + <FrameLayout + android:id="@+id/frame_layout_anonymous_subscriptions_activity" + android:layout_width="match_parent" + android:layout_height="match_parent" + app:layout_behavior="@string/appbar_scrolling_view_behavior" /> + +</androidx.coordinatorlayout.widget.CoordinatorLayout>
\ No newline at end of file |