Files
loongoffice/android/source/res/layout/presentation_mode.xml
Michael Weghorn cf011da45b android lint: Drop redundant android:alignParent* attrs
Address those lint warnings which would otherwise
trigger build errors in a WIP branch updating
compileSdkVersion and targetSdkVersion to 36.

Regenerate android/source/lint-baseline.xml

Change-Id: I0c3cbd10f6f177636a4960dd93674dde7c04b470
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187576
Tested-by: Jenkins
Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
(cherry picked from commit 56cc3fe11f66304502e2ffdf4400f1c74a51d0e7)
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/187719
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
2025-08-10 11:49:01 +02:00

43 lines
1.5 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent">
<WebView
android:id="@+id/presentation_view"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<RelativeLayout
android:id="@+id/presentation_gesture_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:animateLayoutChanges="true">
<ImageButton
android:id="@+id/slide_show_nav_prev"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentTop="true"
android:src="@drawable/ic_search_direction_up" />
<ImageButton
android:id="@+id/slide_show_nav_next"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentEnd="true"
android:src="@drawable/ic_search_direction_down" />
<Button
android:id="@+id/slide_show_nav_back"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentTop="true"
android:text="@string/slideshow_action_back" />
</RelativeLayout>
</RelativeLayout>