<?xml version="1.0" encoding="utf-8"?>
|
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
android:id="@+id/appmanager_item_card_view"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_margin="8dp"
|
android:foreground="?android:attr/selectableItemBackground"
|
app:cardBackgroundColor="?attr/cardview_background_color"
|
app:cardElevation="3dp"
|
app:contentPadding="8dp">
|
|
|
<RelativeLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="?android:attr/activatedBackgroundIndicator"
|
android:minHeight="60dp">
|
|
<ImageView
|
android:id="@+id/item_image"
|
android:layout_width="40dp"
|
android:layout_height="40dp"
|
android:layout_alignParentStart="true"
|
android:layout_centerVertical="true"
|
android:layout_marginStart="16dp"
|
android:layout_marginTop="8dp"
|
android:contentDescription="@string/candidate_item_device_image"
|
android:src="@drawable/ic_music_item"/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_alignWithParentIfMissing="true"
|
android:layout_centerVertical="true"
|
android:layout_marginStart="16dp"
|
android:layout_marginTop="8dp"
|
android:layout_marginEnd="16dp"
|
android:layout_toEndOf="@+id/item_image"
|
android:orientation="vertical"
|
android:paddingTop="8dp"
|
android:paddingBottom="8dp">
|
|
<TextView
|
android:id="@+id/item_name"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:maxLines="1"
|
android:scrollHorizontally="false"
|
android:text="Item Name"
|
android:textAppearance="@style/TextAppearance.AppCompat.Subhead" />
|
|
<TextView
|
android:id="@+id/item_details"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="Item Description"
|
android:textAppearance="@style/TextAppearance.AppCompat.Body1" />
|
|
</LinearLayout>
|
|
</RelativeLayout>
|
</com.google.android.material.card.MaterialCardView>
|