diff options
| author | Andrew Dolgov <fox@fakecake.org> | 2025-05-08 10:20:42 +0300 |
|---|---|---|
| committer | Andrew Dolgov <fox@fakecake.org> | 2025-05-08 10:20:42 +0300 |
| commit | 01e503c7ddfffcb458de48dc73f2ffb492161153 (patch) | |
| tree | 922d19f80069c92ce967b8558ab9c5fa06d4ed40 /org.fox.ttrss/src/main/res | |
| parent | 91aeb6bec654050c53331a635036418bee2b73f9 (diff) | |
show actionbar in prefs activity so it would be more obvious how to exit it, use fullscreen view for gallery activity
Diffstat (limited to 'org.fox.ttrss/src/main/res')
| -rw-r--r-- | org.fox.ttrss/src/main/res/layout/activity_gallery.xml | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/org.fox.ttrss/src/main/res/layout/activity_gallery.xml b/org.fox.ttrss/src/main/res/layout/activity_gallery.xml index 9326a19e..60b6ec1e 100644 --- a/org.fox.ttrss/src/main/res/layout/activity_gallery.xml +++ b/org.fox.ttrss/src/main/res/layout/activity_gallery.xml @@ -1,10 +1,8 @@ <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" - android:fitsSystemWindows="true" android:id="@+id/article_images" android:layout_width="fill_parent" android:animateLayoutChanges="true" - android:background="@android:color/black" android:layout_height="fill_parent"> <com.bogdwellers.pinchtozoom.view.ImageViewPager @@ -13,18 +11,17 @@ android:layout_height="fill_parent" android:layout_alignParentTop="true" /> - <ImageView + <com.google.android.material.button.MaterialButton + style="?attr/materialIconButtonStyle" android:id="@+id/gallery_overflow" - android:clickable="true" android:layout_width="wrap_content" - android:layout_height="26dp" + android:layout_height="wrap_content" android:layout_weight="0" - android:background="@drawable/ripple" - android:src="?ic_dots_vertical" + app:icon="?ic_dots_vertical" android:layout_alignParentRight="true" android:layout_marginRight="8dp" - android:layout_marginTop="@dimen/activity_vertical_margin" - app:tint="?colorTertiary" /> + android:layout_marginTop="48dp" + app:iconTint="?colorTertiary" /> <ProgressBar style="?android:attr/progressBarStyleHorizontal" |