1
0
Fork 0
mirror of https://gitlab.com/dadada_/uuidgen.git synced 2025-09-22 20:36:39 +02:00
uuidgen/app/src/main/res/layout/uuid_gen_fragment.xml
2020-11-08 16:38:33 +01:00

25 lines
No EOL
922 B
XML

<?xml version="1.0" encoding="utf-8"?>
<layout 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">
<data>
</data>
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<Button
android:id="@+id/button_gen"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
android:text="@string/action_generate"
android:textSize="40sp" />
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>