mirror of
https://github.com/FWGS/xash3d-fwgs.git
synced 2026-08-05 11:35:05 +08:00
30 lines
1.4 KiB
XML
30 lines
1.4 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="wrap_content">
|
|
|
|
<!-- <com.google.android.material.textfield.TextInputLayout-->
|
|
<!-- android:layout_width="match_parent"-->
|
|
<!-- android:layout_height="wrap_content"-->
|
|
<!-- app:layout_constraintTop_toTopOf="parent"-->
|
|
<!-- app:layout_constraintBottom_toBottomOf="parent">-->
|
|
|
|
<!-- <com.google.android.material.textfield.TextInputEditText-->
|
|
<!-- android:layout_width="match_parent"-->
|
|
<!-- android:layout_height="wrap_content" />-->
|
|
<!-- </com.google.android.material.textfield.TextInputLayout>-->
|
|
<TextView
|
|
android:id="@android:id/title"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
android:textAppearance="@style/TextAppearance.Material3.TitleMedium"/>
|
|
|
|
<TextView
|
|
android:id="@android:id/summary"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:layout_constraintTop_toBottomOf="@android:id/title"
|
|
android:textAppearance="@style/TextAppearance.Material3.BodyMedium"/>
|
|
</androidx.constraintlayout.widget.ConstraintLayout> |