2020-04-12 17:17:51 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center">
|
|
|
|
|
|
|
|
<androidx.cardview.widget.CardView xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
android:id="@+id/app_item_grid"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_margin="15dp"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:foreground="?attr/selectableItemBackground"
|
|
|
|
card_view:cardCornerRadius="4dp">
|
|
|
|
|
|
|
|
<RelativeLayout
|
2020-04-24 13:39:13 +02:00
|
|
|
android:layout_width="155dp"
|
2020-04-12 17:17:51 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/icon"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="155dp"
|
2020-04-12 17:17:51 +02:00
|
|
|
android:layout_alignParentTop="false"
|
|
|
|
android:layout_centerHorizontal="true"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:contentDescription="@string/icon"
|
|
|
|
android:scaleType="centerCrop" />
|
2020-04-12 17:17:51 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_title"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-12 17:17:51 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/icon"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
2020-04-12 17:17:51 +02:00
|
|
|
android:paddingStart="15dp"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:paddingTop="10dp"
|
2020-04-12 17:17:51 +02:00
|
|
|
android:paddingEnd="15dp"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:singleLine="true"
|
2020-04-12 17:17:51 +02:00
|
|
|
android:textAlignment="center"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceListItem"
|
|
|
|
tools:ignore="RelativeOverlap" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/text_subtitle"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-04-12 17:17:51 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/text_title"
|
|
|
|
android:layout_alignStart="@id/text_title"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:ellipsize="marquee"
|
|
|
|
android:fadingEdge="horizontal"
|
|
|
|
android:marqueeRepeatLimit="marquee_forever"
|
2020-04-12 17:17:51 +02:00
|
|
|
android:paddingBottom="15dp"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:singleLine="true"
|
2020-04-12 17:17:51 +02:00
|
|
|
android:textAlignment="center"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceListItemSecondary"
|
|
|
|
android:textColor="@android:color/tertiary_text_light" />
|
|
|
|
</RelativeLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
|
|
</LinearLayout>
|