lunaticbum 4e26fab27c oh....
2024-08-14 16:06:50 +09:00

32 lines
1.3 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="150dp"
android:layout_height="40dp"
android:layout_margin="5dp"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@drawable/apps_bg"
android:orientation="vertical">
<com.google.android.material.textview.MaterialTextView
android:id="@+id/name"
android:visibility="visible"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_gravity="center_horizontal"
/>
<com.google.android.material.textview.MaterialTextView
android:id="@+id/number"
app:layout_constraintTop_toBottomOf="@id/name"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
android:layout_width="0dp"
android:layout_marginBottom="@dimen/four"
android:layout_height="20dp" />
</androidx.constraintlayout.widget.ConstraintLayout>