diff options
author | Alex Ning <chineseperson5@gmail.com> | 2020-02-18 10:16:04 +0000 |
---|---|---|
committer | Alex Ning <chineseperson5@gmail.com> | 2020-02-18 10:16:04 +0000 |
commit | bc043c442f4069157cf608e1b71d9c3ab3d0389e (patch) | |
tree | a566114a46b7b37c2b8c418ba993b3f6eaee0497 /app/src/main/res/layout/activity_subscribed_subreddits_multiselection.xml | |
parent | af6d3643229ac54adfc9ce42a2bdf0f31b16e743 (diff) | |
download | infinity-for-reddit-bc043c442f4069157cf608e1b71d9c3ab3d0389e.tar infinity-for-reddit-bc043c442f4069157cf608e1b71d9c3ab3d0389e.tar.gz infinity-for-reddit-bc043c442f4069157cf608e1b71d9c3ab3d0389e.tar.bz2 infinity-for-reddit-bc043c442f4069157cf608e1b71d9c3ab3d0389e.tar.lz infinity-for-reddit-bc043c442f4069157cf608e1b71d9c3ab3d0389e.tar.xz infinity-for-reddit-bc043c442f4069157cf608e1b71d9c3ab3d0389e.tar.zst infinity-for-reddit-bc043c442f4069157cf608e1b71d9c3ab3d0389e.zip |
Selecting subreddits when creating multireddits is now available.
Diffstat (limited to 'app/src/main/res/layout/activity_subscribed_subreddits_multiselection.xml')
-rw-r--r-- | app/src/main/res/layout/activity_subscribed_subreddits_multiselection.xml | 74 |
1 files changed, 74 insertions, 0 deletions
diff --git a/app/src/main/res/layout/activity_subscribed_subreddits_multiselection.xml b/app/src/main/res/layout/activity_subscribed_subreddits_multiselection.xml new file mode 100644 index 00000000..bb58b2a6 --- /dev/null +++ b/app/src/main/res/layout/activity_subscribed_subreddits_multiselection.xml @@ -0,0 +1,74 @@ +<?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" + tools:application=".SubscribedSubredditsListingFragment"> + + <com.google.android.material.appbar.AppBarLayout + android:id="@+id/appbar_layout_subreddits_multiselection_activity" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:background="?attr/toolbarAndTabBackgroundColor" + 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_subscribed_subreddits_multiselection_activity"> + + <androidx.appcompat.widget.Toolbar + android:id="@+id/toolbar_subscribed_subreddits_multiselection_activity" + android:layout_width="match_parent" + android:layout_height="?attr/actionBarSize" + app:layout_collapseMode="pin" + app:layout_scrollFlags="scroll|enterAlways" + app:popupTheme="@style/AppTheme.PopupOverlay" /> + + </com.google.android.material.appbar.CollapsingToolbarLayout> + + </com.google.android.material.appbar.AppBarLayout> + + <androidx.swiperefreshlayout.widget.SwipeRefreshLayout + android:id="@+id/swipe_refresh_layout_subscribed_subscribed_subreddits_multiselection_activity" + android:layout_width="match_parent" + android:layout_height="match_parent" + app:layout_behavior="@string/appbar_scrolling_view_behavior"> + + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/recycler_view_subscribed_subscribed_subreddits_multiselection_activity" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:clipToPadding="false" /> + + </androidx.swiperefreshlayout.widget.SwipeRefreshLayout> + + <LinearLayout + android:id="@+id/no_subscriptions_linear_layout_subscribed_subreddits_multiselection_activity" + android:layout_width="match_parent" + android:layout_height="match_parent" + android:layout_marginBottom="48dp" + android:gravity="center" + android:orientation="vertical" + android:visibility="gone" + app:layout_behavior="@string/appbar_scrolling_view_behavior"> + + <ImageView + android:id="@+id/no_subscriptions_image_view_subscribed_subreddits_multiselection_activity" + android:layout_width="150dp" + android:layout_height="wrap_content" /> + + <TextView + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginTop="16dp" + android:gravity="center" + android:text="@string/no_subreddits" + android:textSize="?attr/font_default" /> + + </LinearLayout> + +</androidx.coordinatorlayout.widget.CoordinatorLayout>
\ No newline at end of file |