2020-04-12 17:17:51 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2020-07-17 17:53:44 +02:00
|
|
|
<FrameLayout 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"
|
2020-04-12 17:17:51 +02:00
|
|
|
android:layout_width="match_parent"
|
2020-07-17 17:53:44 +02:00
|
|
|
android:layout_height="wrap_content">
|
2020-04-12 17:17:51 +02:00
|
|
|
|
2020-07-17 17:53:44 +02:00
|
|
|
<androidx.cardview.widget.CardView
|
2020-04-12 17:17:51 +02:00
|
|
|
android:id="@+id/app_item_grid"
|
2020-08-08 20:01:21 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2020-07-17 17:53:44 +02:00
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_margin="@dimen/app_card_margin_half"
|
2020-04-12 17:17:51 +02:00
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:foreground="?attr/selectableItemBackground"
|
2020-07-17 17:53:44 +02:00
|
|
|
app:cardCornerRadius="4dp"
|
|
|
|
app:cardElevation="@dimen/app_card_margin"
|
|
|
|
app:cardUseCompatPadding="true">
|
2020-04-12 17:17:51 +02:00
|
|
|
|
2020-07-17 17:53:44 +02:00
|
|
|
<LinearLayout
|
2020-08-08 20:01:21 +02:00
|
|
|
android:layout_width="match_parent"
|
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"
|
2020-08-08 20:01:21 +02:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:adjustViewBounds="true"
|
2020-04-24 13:39:13 +02:00
|
|
|
android:contentDescription="@string/icon"
|
2020-07-17 17:53:44 +02:00
|
|
|
tools:src="@drawable/default_icon" />
|
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"
|
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"
|
2020-07-17 17:53:44 +02:00
|
|
|
tools:text="Title" />
|
2020-04-12 17:17:51 +02:00
|
|
|
|
|
|
|
<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"
|
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"
|
2020-07-17 17:53:44 +02:00
|
|
|
android:textColor="@android:color/tertiary_text_light"
|
|
|
|
tools:text="Subtitle" />
|
|
|
|
</LinearLayout>
|
2020-04-12 17:17:51 +02:00
|
|
|
</androidx.cardview.widget.CardView>
|
2020-07-17 17:53:44 +02:00
|
|
|
</FrameLayout>
|