レイアウト実装

This commit is contained in:
r-ca 2023-12-18 01:45:03 +09:00
parent 1a332ce707
commit 56eecb45e4
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -1,14 +1,17 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<FrameLayout 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"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="match_parent"
tools:context=".DebugMenuDocumentTesterListFragment"> tools:context=".DebugMenuDocumentTesterListFragment" >
<!-- TODO: Update blank fragment layout --> <androidx.recyclerview.widget.RecyclerView
<TextView android:id="@+id/recycler_view_document_list"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="match_parent" android:layout_height="0dp"
android:text="@string/hello_blank_fragment" /> app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
</FrameLayout> app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>