diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-08 09:45:23 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-08 09:45:23 +0300 |
| commit | c53ecef3429688259e5df7b9dba603c602e417b2 (patch) | |
| tree | 486aa491e95dc9eedd7328fa748d98e459b951c6 /org.fox.ttrss/src/main/res/layout | |
| parent | bbb1d54575c74213f70e2f88bac0f541c1724488 (diff) | |
adjust drawer divider inset & feeds row with checkbox veritical padding
Diffstat (limited to 'org.fox.ttrss/src/main/res/layout')
| -rw-r--r-- | org.fox.ttrss/src/main/res/layout/drawer_divider.xml | 7 | ||||
| -rwxr-xr-x | org.fox.ttrss/src/main/res/layout/feeds_row_toggle.xml | 2 |
2 files changed, 5 insertions, 4 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/drawer_divider.xml b/org.fox.ttrss/src/main/res/layout/drawer_divider.xml index 3b4ab6fc..55aa5fdc 100644 --- a/org.fox.ttrss/src/main/res/layout/drawer_divider.xml +++ b/org.fox.ttrss/src/main/res/layout/drawer_divider.xml @@ -1,11 +1,14 @@ <?xml version="1.0" encoding="utf-8"?> <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:layout_width="fill_parent" - android:layout_height="fill_parent"> + xmlns:app="http://schemas.android.com/apk/res-auto" + android:layout_width="match_parent" + android:layout_height="wrap_content"> <com.google.android.material.divider.MaterialDivider android:layout_width="match_parent" + app:dividerInsetEnd="16dp" + app:dividerInsetStart="16dp" android:layout_marginTop="8dp" android:layout_height="wrap_content"/> diff --git a/org.fox.ttrss/src/main/res/layout/feeds_row_toggle.xml b/org.fox.ttrss/src/main/res/layout/feeds_row_toggle.xml index 3b76fc79..d4451bbe 100755 --- a/org.fox.ttrss/src/main/res/layout/feeds_row_toggle.xml +++ b/org.fox.ttrss/src/main/res/layout/feeds_row_toggle.xml @@ -8,8 +8,6 @@ android:descendantFocusability="blocksDescendants" android:paddingLeft="16dp" android:paddingRight="16dp" - android:paddingTop="8dp" - android:paddingBottom="8dp" android:baselineAligned="true" android:gravity="center_vertical" android:orientation="horizontal"> |