2018-07-27 18:37:33 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<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"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
2018-11-05 19:23:07 +05:30
|
|
|
<com.google.android.material.card.MaterialCardView
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2018-08-08 13:33:38 +05:30
|
|
|
app:cardCornerRadius="8dp"
|
|
|
|
app:cardUseCompatPadding="true"
|
|
|
|
app:contentPadding="12dp">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2019-09-28 23:22:49 +05:30
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2018-12-06 15:53:03 +05:30
|
|
|
android:id="@+id/itemPrice"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
2019-09-02 20:21:53 +05:30
|
|
|
android:textAppearance="@style/TextViewBody2"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:textStyle="bold"
|
|
|
|
tools:ignore="MissingPrefix" />
|
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.WidthFitSquareLayout
|
2018-08-08 13:33:38 +05:30
|
|
|
android:layout_width="36dp"
|
|
|
|
android:layout_height="36dp">
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2019-09-28 23:22:49 +05:30
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2018-12-06 15:53:03 +05:30
|
|
|
android:id="@+id/itemImage"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:scaleType="centerInside"
|
2019-09-28 23:22:49 +05:30
|
|
|
app:srcCompat="@drawable/ic_github_circle_white_24dp"
|
|
|
|
app:tint="?colorOnBackground" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
|
|
|
</code.name.monkey.retromusic.views.WidthFitSquareLayout>
|
|
|
|
|
2019-09-28 23:22:49 +05:30
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2018-12-06 15:53:03 +05:30
|
|
|
android:id="@+id/itemTitle"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
2019-09-02 20:21:53 +05:30
|
|
|
android:textAppearance="@style/TextViewBody2"
|
2019-12-26 20:55:41 +05:30
|
|
|
tools:text="@tools:sample/full_names" />
|
2018-07-27 18:37:33 +05:30
|
|
|
|
2019-09-28 23:22:49 +05:30
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2018-12-06 15:53:03 +05:30
|
|
|
android:id="@+id/itemText"
|
2018-07-27 18:37:33 +05:30
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-02 20:21:53 +05:30
|
|
|
android:textAppearance="@style/TextViewBody1"
|
2019-12-26 20:55:41 +05:30
|
|
|
tools:text="@tools:sample/full_names" />
|
2018-07-27 18:37:33 +05:30
|
|
|
</LinearLayout>
|
2018-11-05 19:23:07 +05:30
|
|
|
</com.google.android.material.card.MaterialCardView>
|
2018-07-27 18:37:33 +05:30
|
|
|
</FrameLayout>
|