diff options
Diffstat (limited to 'app/src/main/res')
-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 |