summaryrefslogtreecommitdiff
path: root/org.fox.ttrss
diff options
context:
space:
mode:
authorAndrew Dolgov <fox@fakecake.org>2025-05-18 22:22:35 +0300
committerAndrew Dolgov <fox@fakecake.org>2025-05-18 22:22:35 +0300
commitdb331412437bd342bb9a3a4d62c3898828e10249 (patch)
tree3f8b1c3889b7a936261b66955d1dddaef9a90f08 /org.fox.ttrss
parentc433e6f7b3c96acddce7591f4642dbdc84b37668 (diff)
adjust flavor image loading bar margins
Diffstat (limited to 'org.fox.ttrss')
-rwxr-xr-xorg.fox.ttrss/src/main/java/org/fox/ttrss/HeadlinesFragment.java4
-rw-r--r--org.fox.ttrss/src/main/res/layout/fragment_gallery_entry.xml2
-rwxr-xr-xorg.fox.ttrss/src/main/res/layout/headlines_row.xml6
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" />