mirror of
https://github.com/fumiama/copymanga.git
synced 2026-06-07 16:20:24 +08:00
35 lines
1.3 KiB
XML
35 lines
1.3 KiB
XML
<?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">
|
|
|
|
<top.fumiama.copymanga.view.JSWebView
|
|
android:id="@+id/w"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
<ProgressBar
|
|
android:id="@+id/pw"
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
android:layout_width="0dp"
|
|
android:layout_height="2dp"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
<Button
|
|
android:id="@+id/fab"
|
|
android:layout_width="64dp"
|
|
android:layout_height="64dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:layout_marginBottom="24dp"
|
|
android:background="@drawable/rndbg_round"
|
|
android:foreground="@drawable/ic_dl"
|
|
android:foregroundGravity="center"
|
|
android:onClick="onFabClicked"
|
|
android:visibility="gone"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintEnd_toEndOf="@+id/w" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |