2024-11-11 18:12:06 +09:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2025-09-07 23:14:03 +09:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2024-11-11 18:12:06 +09:00
|
|
|
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" />
|
2024-11-13 17:41:40 +09:00
|
|
|
<!-- <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"/>-->
|
2024-11-11 18:12:06 +09:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|