26 lines
1.1 KiB
XML
Raw Normal View History

2024-11-11 18:12:06 +09:00
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:background="#22000000"
android:padding="@dimen/default_padding"
android:clickable="true"
android:focusableInTouchMode="true">
<im.delight.android.webview.AdvancedWebView
android:layout_margin="@dimen/default_layout_margin"
android:id="@+id/webview"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<ImageButton
app:layout_constraintTop_toBottomOf="@id/webview"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:id="@+id/pdf_print"
android:src="@drawable/ic_down"
android:layout_width="60dp"
android:layout_height="60dp"/>
</androidx.constraintlayout.widget.ConstraintLayout>