PlayerAndroid/app/src/main/res/layout/section_recycler_view.xml

34 lines
1.4 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2019-02-23 17:39:02 +00:00
xmlns:app="http://schemas.android.com/apk/res-auto"
2019-06-23 17:23:50 +00:00
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/recentArtistContainer"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
2019-06-23 17:39:06 +00:00
<code.name.monkey.retromusic.views.RetroChip
2019-06-23 17:23:50 +00:00
android:id="@+id/chipHead"
style="@style/Widget.MaterialComponents.Chip.Action"
2019-03-18 17:46:52 +00:00
android:layout_width="wrap_content"
2019-02-23 17:39:02 +00:00
android:layout_height="wrap_content"
2019-09-28 17:52:49 +00:00
android:layout_marginStart="@dimen/horizontal_padding_home"
2019-09-29 03:33:23 +00:00
android:layout_marginTop="12dp"
2019-09-28 17:52:49 +00:00
android:layout_marginEnd="@dimen/horizontal_padding_home"
2019-09-29 03:33:23 +00:00
android:layout_marginBottom="12dp"
android:textAppearance="@style/ChipFont"
android:textColor="?android:textColorSecondary"
2019-06-23 17:23:50 +00:00
app:chipIconTint="?iconColor"
app:chipStrokeColor="?dividerColor"
app:chipStrokeWidth="1dp"
app:iconStartPadding="8dp"
tools:chipIcon="@drawable/ic_person_white_24dp"
tools:text="@string/for_you" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false" />
</LinearLayout>