30 lines
1.3 KiB
XML
30 lines
1.3 KiB
XML
|
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
|
<androidx.appcompat.widget.LinearLayoutCompat xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:background="@drawable/apps_bg"
|
||
|
|
android:orientation="vertical">
|
||
|
|
|
||
|
|
<com.google.android.material.imageview.ShapeableImageView
|
||
|
|
android:id="@+id/appIcon"
|
||
|
|
android:layout_width="@dimen/forty"
|
||
|
|
android:layout_height="@dimen/forty"
|
||
|
|
android:layout_gravity="center_horizontal"
|
||
|
|
android:layout_marginBottom="@dimen/four" />
|
||
|
|
|
||
|
|
<androidx.appcompat.widget.LinearLayoutCompat
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:orientation="horizontal">
|
||
|
|
|
||
|
|
<com.google.android.material.imageview.ShapeableImageView
|
||
|
|
android:id="@+id/appIconTwo"
|
||
|
|
android:layout_width="@dimen/forty"
|
||
|
|
android:layout_height="@dimen/forty" />
|
||
|
|
|
||
|
|
<com.google.android.material.textview.MaterialTextView
|
||
|
|
android:id="@+id/childTextview"
|
||
|
|
android:layout_width="match_parent"
|
||
|
|
android:layout_height="match_parent" />
|
||
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|
||
|
|
</androidx.appcompat.widget.LinearLayoutCompat>
|