RetroMusicPlayer/app/src/main/res/layout/item_grid.xml

57 lines
2.2 KiB
XML
Raw Normal View History

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"
2018-11-05 19:23:07 +05:30
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
2018-11-05 19:23:07 +05:30
android:layout_height="wrap_content"
2020-02-25 18:45:23 +05:30
android:layout_margin="4dp"
2020-01-06 11:04:09 +05:30
android:background="?rectSelector"
2019-12-07 21:13:27 +05:30
android:clickable="true"
android:focusable="true"
2018-11-05 19:23:07 +05:30
tools:ignore="MissingPrefix">
2018-07-27 18:37:33 +05:30
2018-11-05 19:23:07 +05:30
<LinearLayout
2018-07-27 18:37:33 +05:30
android:layout_width="match_parent"
android:layout_height="match_parent"
2018-11-05 19:23:07 +05:30
android:orientation="vertical"
tools:ignore="UnusedAttribute,UselessParent">
2018-07-27 18:37:33 +05:30
2020-02-25 18:45:23 +05:30
<code.name.monkey.retromusic.views.RetroShapeableImageView
android:id="@+id/image"
2018-11-05 19:23:07 +05:30
android:layout_width="match_parent"
2019-12-07 21:13:27 +05:30
android:layout_height="match_parent"
2020-02-25 18:45:23 +05:30
android:scaleType="centerCrop"
app:retroCornerSize="8dp"
tools:ignore="ContentDescription"
tools:srcCompat="@tools:sample/backgrounds/scenic" />
2018-11-05 19:23:07 +05:30
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center_vertical"
android:orientation="vertical"
2020-01-02 09:23:43 +05:30
android:padding="8dp">
2018-07-27 18:37:33 +05:30
2019-09-28 23:22:49 +05:30
<com.google.android.material.textview.MaterialTextView
2018-11-05 19:23:07 +05:30
android:id="@+id/title"
2019-12-16 11:41:24 +05:30
android:layout_width="match_parent"
2018-11-05 19:23:07 +05:30
android:layout_height="wrap_content"
android:singleLine="true"
android:textAppearance="@style/TextViewSubtitle1"
2019-12-01 16:58:57 +05:30
android:textColor="?android:attr/textColorPrimary"
2019-09-28 23:22:49 +05:30
android:textStyle="bold"
tools:text="@string/bug_report_summary" />
2018-07-27 18:37:33 +05:30
2019-09-28 23:22:49 +05:30
<com.google.android.material.textview.MaterialTextView
2018-11-05 19:23:07 +05:30
android:id="@+id/text"
2019-12-16 11:41:24 +05:30
android:layout_width="match_parent"
2018-11-05 19:23:07 +05:30
android:layout_height="wrap_content"
android:paddingTop="4dp"
android:singleLine="true"
2019-12-01 16:58:57 +05:30
android:textColor="?android:attr/textColorSecondary"
2019-09-28 23:22:49 +05:30
tools:text="@string/bug_report_summary" />
2018-07-27 18:37:33 +05:30
2018-11-05 19:23:07 +05:30
</LinearLayout>
2018-07-27 18:37:33 +05:30
</LinearLayout>
</FrameLayout>