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 | |
| parent | c433e6f7b3c96acddce7591f4642dbdc84b37668 (diff) | |
adjust flavor image loading bar margins
3 files changed, 7 insertions, 5 deletions
diff --git a/org.fox.ttrss/src/main/java/org/fox/ttrss/HeadlinesFragment.java b/org.fox.ttrss/src/main/java/org/fox/ttrss/HeadlinesFragment.java index 0fbd3721..e20fbcae 100755 --- a/org.fox.ttrss/src/main/java/org/fox/ttrss/HeadlinesFragment.java +++ b/org.fox.ttrss/src/main/java/org/fox/ttrss/HeadlinesFragment.java @@ -641,8 +641,8 @@ public class HeadlinesFragment extends androidx.fragment.app.Fragment { dateView = v.findViewById(R.id.date); selectionBoxView = v.findViewById(R.id.selected); menuButtonView = v.findViewById(R.id.article_menu_button); - flavorImageHolder = v.findViewById(R.id.flavorImageHolder); - flavorImageLoadingBar = v.findViewById(R.id.flavorImageLoadingBar); + flavorImageHolder = v.findViewById(R.id.flavor_image_holder); + flavorImageLoadingBar = v.findViewById(R.id.flavor_image_progressbar); textImage = v.findViewById(R.id.text_image); textChecked = v.findViewById(R.id.text_checked); headlineHeader = v.findViewById(R.id.headline_header); 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" /> |