pull/90/head^2
parent
25d67acb36
commit
8816450b12
@ -1,7 +1,59 @@ |
||||
<?xml version="1.0" encoding="utf-8"?> |
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" |
||||
xmlns:app="http://schemas.android.com/apk/res-auto" |
||||
android:orientation="vertical" |
||||
android:layout_width="match_parent" |
||||
android:layout_height="match_parent"> |
||||
android:layout_height="wrap_content"> |
||||
|
||||
</LinearLayout> |
||||
<io.legado.app.lib.theme.view.ATECheckBox |
||||
android:id="@+id/checkbox" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:layout_margin="10dp" |
||||
android:gravity="center" |
||||
app:layout_constraintBottom_toBottomOf="parent" |
||||
app:layout_constraintLeft_toLeftOf="parent" |
||||
app:layout_constraintStart_toStartOf="parent" |
||||
app:layout_constraintTop_toTopOf="parent" /> |
||||
|
||||
<TextView |
||||
android:id="@+id/tv_name" |
||||
android:layout_width="0dp" |
||||
android:layout_height="wrap_content" |
||||
android:padding="3dp" |
||||
app:layout_constraintTop_toTopOf="parent" |
||||
app:layout_constraintBottom_toTopOf="@id/tv_author" |
||||
app:layout_constraintLeft_toRightOf="@id/checkbox" |
||||
app:layout_constraintRight_toLeftOf="@+id/tv_group" /> |
||||
|
||||
<TextView |
||||
android:id="@+id/tv_author" |
||||
android:layout_width="0dp" |
||||
android:layout_height="wrap_content" |
||||
android:padding="3dp" |
||||
app:layout_constraintLeft_toRightOf="@+id/checkbox" |
||||
app:layout_constraintTop_toBottomOf="@id/tv_name" |
||||
app:layout_constraintBottom_toBottomOf="parent" |
||||
app:layout_constraintRight_toLeftOf="@+id/tv_group" /> |
||||
|
||||
<TextView |
||||
android:id="@+id/tv_group" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:padding="10dp" |
||||
android:text="@string/group" |
||||
app:layout_constraintTop_toTopOf="parent" |
||||
app:layout_constraintBottom_toBottomOf="parent" |
||||
app:layout_constraintRight_toLeftOf="@+id/tv_delete" /> |
||||
|
||||
<TextView |
||||
android:id="@+id/tv_delete" |
||||
android:layout_width="wrap_content" |
||||
android:layout_height="wrap_content" |
||||
android:padding="10dp" |
||||
android:text="@string/delete" |
||||
app:layout_constraintTop_toTopOf="parent" |
||||
app:layout_constraintBottom_toBottomOf="parent" |
||||
app:layout_constraintRight_toRightOf="parent" /> |
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout> |
Loading…
Reference in new issue