diff options
author | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2023-10-15 15:14:09 +0000 |
---|---|---|
committer | Docile-Alligator <25734209+Docile-Alligator@users.noreply.github.com> | 2023-10-15 15:14:09 +0000 |
commit | 23c353275c16ff1d92723343c6e0197f204c7349 (patch) | |
tree | 9efb7367d64d838e368eeb20ba301a85b6dd93a0 /app/src/main/res | |
parent | db4f416d4be8ba5769bef9e03cebdf2173ea2ef2 (diff) | |
download | infinity-for-reddit-23c353275c16ff1d92723343c6e0197f204c7349.tar infinity-for-reddit-23c353275c16ff1d92723343c6e0197f204c7349.tar.gz infinity-for-reddit-23c353275c16ff1d92723343c6e0197f204c7349.tar.bz2 infinity-for-reddit-23c353275c16ff1d92723343c6e0197f204c7349.tar.lz infinity-for-reddit-23c353275c16ff1d92723343c6e0197f204c7349.tar.xz infinity-for-reddit-23c353275c16ff1d92723343c6e0197f204c7349.tar.zst infinity-for-reddit-23c353275c16ff1d92723343c6e0197f204c7349.zip |
Continue implementing showing post filter usages in PostFilterPreferenceActivity.
Diffstat (limited to '')
-rw-r--r-- | app/src/main/res/layout/item_post_filter_usage_embedded.xml | 3 | ||||
-rw-r--r-- | app/src/main/res/layout/item_post_filter_with_usage.xml | 50 |
2 files changed, 22 insertions, 31 deletions
diff --git a/app/src/main/res/layout/item_post_filter_usage_embedded.xml b/app/src/main/res/layout/item_post_filter_usage_embedded.xml index bfec3dbb..e156e968 100644 --- a/app/src/main/res/layout/item_post_filter_usage_embedded.xml +++ b/app/src/main/res/layout/item_post_filter_usage_embedded.xml @@ -2,7 +2,8 @@ <TextView xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" - android:padding="16dp" + android:paddingTop="8dp" + android:layout_marginStart="24dp" android:textColor="?attr/primaryTextColor" android:textSize="?attr/font_default" android:fontFamily="?attr/font_family" />
\ No newline at end of file diff --git a/app/src/main/res/layout/item_post_filter_with_usage.xml b/app/src/main/res/layout/item_post_filter_with_usage.xml index 8a083caa..74699ed4 100644 --- a/app/src/main/res/layout/item_post_filter_with_usage.xml +++ b/app/src/main/res/layout/item_post_filter_with_usage.xml @@ -1,38 +1,28 @@ <?xml version="1.0" encoding="utf-8"?> -<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:app="http://schemas.android.com/apk/res-auto" +<ml.docilealligator.infinityforreddit.customviews.InterceptTouchEventLinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="wrap_content" - android:layout_marginTop="8dp" - android:layout_marginBottom="8dp" - android:layout_marginStart="16dp" - android:layout_marginEnd="16dp" - app:cardBackgroundColor="#FBEEFC" - style="?attr/materialCardViewFilledStyle"> + android:orientation="vertical" + android:paddingTop="16dp" + android:paddingBottom="16dp" + android:paddingStart="72dp" + android:paddingEnd="16dp" + android:clickable="true" + android:focusable="true" + android:background="?attr/selectableItemBackground"> - <LinearLayout + <TextView + android:id="@+id/post_filter_name_text_view_item_post_filter" android:layout_width="match_parent" android:layout_height="wrap_content" - android:orientation="vertical"> + android:fontFamily="?attr/font_family" + android:textColor="?attr/primaryTextColor" + android:textSize="?attr/font_16" /> - <TextView - android:id="@+id/post_filter_name_text_view_item_post_filter" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:paddingTop="16dp" - android:paddingBottom="16dp" - android:paddingStart="72dp" - android:paddingEnd="16dp" - android:textColor="?attr/primaryTextColor" - android:textSize="?attr/font_16" - android:fontFamily="?attr/font_family" /> - - <androidx.recyclerview.widget.RecyclerView - android:id="@+id/post_filter_usage_recycler_view_item_post_filter" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:nestedScrollingEnabled="false" /> - - </LinearLayout> + <androidx.recyclerview.widget.RecyclerView + android:id="@+id/post_filter_usage_recycler_view_item_post_filter" + android:layout_width="match_parent" + android:layout_height="wrap_content" + android:nestedScrollingEnabled="false" /> -</com.google.android.material.card.MaterialCardView>
\ No newline at end of file +</ml.docilealligator.infinityforreddit.customviews.InterceptTouchEventLinearLayout>
\ No newline at end of file |