2024-08-12 17:02:52 +09:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2024-08-13 18:22:27 +09:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2024-08-12 17:02:52 +09:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2024-08-13 18:22:27 +09:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2024-08-12 17:02:52 +09:00
|
|
|
android:background="@drawable/apps_bg"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
2024-08-13 18:22:27 +09:00
|
|
|
android:id="@+id/appIconTwo"
|
|
|
|
|
android:visibility="gone"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
2024-08-12 17:02:52 +09:00
|
|
|
android:layout_width="@dimen/forty"
|
|
|
|
|
android:layout_height="@dimen/forty"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
|
android:layout_marginBottom="@dimen/four" />
|
|
|
|
|
|
|
|
|
|
|
2024-08-13 18:22:27 +09:00
|
|
|
<com.google.android.material.imageview.ShapeableImageView
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
|
android:layout_marginBottom="@dimen/four"
|
|
|
|
|
android:visibility="visible"
|
|
|
|
|
android:id="@+id/appIcon"
|
|
|
|
|
android:layout_width="@dimen/forty"
|
|
|
|
|
android:layout_height="@dimen/forty" />
|
|
|
|
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
|
|
|
android:id="@+id/childTextview"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/appIconTwo"
|
|
|
|
|
app:layout_constraintLeft_toRightOf="@id/appIcon"
|
|
|
|
|
app:layout_constraintRight_toRightOf="parent"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_marginBottom="@dimen/four"
|
|
|
|
|
android:layout_height="match_parent" />
|
2024-08-12 17:02:52 +09:00
|
|
|
|
2024-08-13 18:22:27 +09:00
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|