2019-09-09 13:04:53 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?><!--
|
|
|
|
~ Copyright (c) 2019 Hemanth Savarala.
|
|
|
|
~
|
|
|
|
~ Licensed under the GNU General Public License v3
|
|
|
|
~
|
|
|
|
~ This is free software: you can redistribute it and/or modify it under
|
|
|
|
~ the terms of the GNU General Public License as published by
|
|
|
|
~ the Free Software Foundation either version 3 of the License, or (at your option) any later version.
|
|
|
|
~
|
|
|
|
~ This software is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
|
|
|
|
~ without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
~ See the GNU General Public License for more details.
|
|
|
|
-->
|
|
|
|
<LinearLayout 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"
|
2020-01-06 05:34:09 +00:00
|
|
|
android:background="?rectSelector"
|
2019-09-09 13:04:53 +00:00
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:minHeight="@dimen/md_listitem_height"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="24dp"
|
|
|
|
tools:ignore="PrivateResource">
|
|
|
|
|
2020-02-24 05:42:09 +00:00
|
|
|
<code.name.monkey.retromusic.views.RetroShapeableImageView
|
2019-11-04 18:43:54 +00:00
|
|
|
android:id="@+id/icon"
|
2019-09-09 13:04:53 +00:00
|
|
|
android:layout_width="72dp"
|
|
|
|
android:layout_height="72dp"
|
|
|
|
android:layout_margin="8dp"
|
|
|
|
app:civ_border="false"
|
|
|
|
app:civ_shadow="false"
|
2020-02-24 05:42:09 +00:00
|
|
|
app:retroCornerSize="36dp"
|
2019-11-04 18:59:44 +00:00
|
|
|
app:srcCompat="@drawable/ic_person_flat"
|
|
|
|
tools:srcCompat="@tools:sample/backgrounds/scenic[20]" />
|
2019-09-09 13:04:53 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical"
|
2020-02-24 05:42:09 +00:00
|
|
|
android:paddingStart="16dp"
|
2020-02-26 16:49:24 +00:00
|
|
|
android:paddingTop="8dp"
|
|
|
|
android:paddingEnd="16dp"
|
|
|
|
android:paddingBottom="8dp">
|
2019-09-09 13:04:53 +00:00
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
<com.google.android.material.textview.MaterialTextView
|
2019-09-09 13:04:53 +00:00
|
|
|
android:id="@+id/title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center"
|
2019-09-28 17:52:49 +00:00
|
|
|
android:textAppearance="@style/TextViewHeadline5"
|
2019-11-04 18:59:44 +00:00
|
|
|
android:textStyle="bold"
|
2019-12-10 17:36:20 +00:00
|
|
|
tools:text="@tools:sample/full_names" />
|
2019-09-09 13:04:53 +00:00
|
|
|
|
2019-09-27 15:36:10 +00:00
|
|
|
<code.name.monkey.retromusic.views.BaselineGridTextView
|
2019-09-09 13:04:53 +00:00
|
|
|
android:id="@+id/text"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-12-10 17:36:20 +00:00
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
2019-09-28 17:52:49 +00:00
|
|
|
app:lineHeightHint="24sp"
|
2019-12-26 15:25:41 +00:00
|
|
|
tools:text="@tools:sample/full_names" />
|
2019-09-09 13:04:53 +00:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|