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.
42 lines
1.6 KiB
42 lines
1.6 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" |
|
xmlns:tools="http://schemas.android.com/tools" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
tools:context=".ui.library.LibraryFragment"> |
|
|
|
<ListView |
|
android:id="@+id/list_library" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
app:layout_constraintBottom_toBottomOf="parent" |
|
app:layout_constraintEnd_toEndOf="parent" |
|
app:layout_constraintStart_toStartOf="parent" |
|
app:layout_constraintTop_toTopOf="parent" /> |
|
|
|
<ScrollView |
|
android:id="@+id/scroll_library" |
|
android:layout_width="match_parent" |
|
android:layout_height="match_parent" |
|
android:visibility="gone"> |
|
|
|
<LinearLayout |
|
android:id="@+id/linear_library" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:orientation="vertical"> |
|
|
|
<TextView |
|
android:id="@+id/text_dashboard" |
|
android:layout_width="match_parent" |
|
android:layout_height="wrap_content" |
|
android:layout_marginStart="8dp" |
|
android:layout_marginTop="8dp" |
|
android:layout_marginEnd="8dp" |
|
android:textAlignment="center" |
|
android:textSize="20sp" /> |
|
</LinearLayout> |
|
</ScrollView> |
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |