You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
2.0 KiB
46 lines
2.0 KiB
<?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">
|
|
|
|
<io.legado.app.ui.widget.TitleBar
|
|
android:id="@+id/titleBar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
app:title="远程书籍" />
|
|
|
|
<!-- <io.legado.app.ui.widget.anima.RefreshProgressBar-->
|
|
<!-- android:id="@+id/refresh_progress_bar"-->
|
|
<!-- android:layout_width="match_parent"-->
|
|
<!-- android:layout_height="2dp"-->
|
|
<!-- app:layout_constraintTop_toBottomOf="@id/lay_top" />-->
|
|
<io.legado.app.ui.widget.anima.RefreshProgressBar
|
|
android:id="@+id/refresh_progress_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="2dp"
|
|
app:layout_constraintTop_toBottomOf="@id/titleBar" />
|
|
|
|
<io.legado.app.ui.widget.dynamiclayout.DynamicFrameLayout
|
|
android:id="@+id/content_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
app:layout_constraintTop_toBottomOf="@id/refresh_progress_bar">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
android:id="@+id/recycler_view"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
|
|
</io.legado.app.ui.widget.dynamiclayout.DynamicFrameLayout>
|
|
|
|
<!-- <io.legado.app.ui.widget.SelectActionBar-->
|
|
<!-- android:id="@+id/select_action_bar"-->
|
|
<!-- android:layout_width="match_parent"-->
|
|
<!-- android:layout_height="wrap_content"-->
|
|
<!-- app:layout_constraintBottom_toBottomOf="parent"-->
|
|
<!-- app:layout_constraintTop_toBottomOf="@id/content_view"-->
|
|
<!-- />-->
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |