diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-18 22:22:35 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-18 22:22:35 +0300 |
| commit | db331412437bd342bb9a3a4d62c3898828e10249 (patch) | |
| tree | 3f8b1c3889b7a936261b66955d1dddaef9a90f08 /org.fox.ttrss/src/main/res | |
| parent | c433e6f7b3c96acddce7591f4642dbdc84b37668 (diff) | |
adjust flavor image loading bar margins
Diffstat (limited to 'org.fox.ttrss/src/main/res')
| -rw-r--r-- | org.fox.ttrss/src/main/res/layout/fragment_gallery_entry.xml | 2 | ||||
| -rwxr-xr-x | org.fox.ttrss/src/main/res/layout/headlines_row.xml | 6 |
2 files changed, 5 insertions, 3 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/fragment_gallery_entry.xml b/org.fox.ttrss/src/main/res/layout/fragment_gallery_entry.xml index 5bde3166..3c507cba 100644 --- a/org.fox.ttrss/src/main/res/layout/fragment_gallery_entry.xml +++ b/org.fox.ttrss/src/main/res/layout/fragment_gallery_entry.xml @@ -1,6 +1,6 @@ <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" - android:id="@+id/flavorImageHolder" + android:id="@+id/flavor_image_holder" android:layout_width="match_parent" android:layout_height="match_parent"> diff --git a/org.fox.ttrss/src/main/res/layout/headlines_row.xml b/org.fox.ttrss/src/main/res/layout/headlines_row.xml index 98a66299..85a93f33 100755 --- a/org.fox.ttrss/src/main/res/layout/headlines_row.xml +++ b/org.fox.ttrss/src/main/res/layout/headlines_row.xml @@ -99,18 +99,20 @@ android:layout_height="match_parent" > <FrameLayout - android:id="@+id/flavorImageHolder" + android:id="@+id/flavor_image_holder" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginBottom="16dp" android:layout_span="2"> <ProgressBar - android:id="@+id/flavorImageLoadingBar" + android:id="@+id/flavor_image_progressbar" style="?android:attr/progressBarStyleHorizontal" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_gravity="center" + android:layout_marginStart="16dp" + android:layout_marginEnd="16dp" android:indeterminate="false" android:max="100" android:visibility="visible" /> |