2019-01-19 11:48:26 +05:30
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2019-06-23 22:53:50 +05:30
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2019-01-19 11:48:26 +05:30
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2019-03-25 18:13:43 +05:30
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="12dp">
|
2019-01-19 11:48:26 +05:30
|
|
|
|
2019-06-23 23:09:06 +05:30
|
|
|
<code.name.monkey.retromusic.views.RetroChip
|
2019-06-23 22:53:50 +05:30
|
|
|
android:id="@+id/chipHead"
|
2019-03-18 23:16:52 +05:30
|
|
|
android:layout_width="wrap_content"
|
2019-02-23 23:09:02 +05:30
|
|
|
android:layout_height="wrap_content"
|
2019-03-18 23:16:52 +05:30
|
|
|
android:layout_margin="12dp"
|
2019-06-23 22:53:50 +05:30
|
|
|
android:fontFamily="@font/circular"
|
|
|
|
android:textColor="?android:textColorSecondary"
|
|
|
|
app:chipIconTint="?iconColor"
|
|
|
|
app:chipStrokeColor="?dividerColor"
|
|
|
|
app:chipStrokeWidth="1dp"
|
|
|
|
app:iconStartPadding="8dp"
|
|
|
|
tools:chipIcon="@drawable/ic_person_white_24dp"
|
|
|
|
tools:text="@string/for_you" />
|
2019-01-19 11:48:26 +05:30
|
|
|
|
|
|
|
<code.name.monkey.retromusic.views.MetalRecyclerViewPager
|
|
|
|
android:id="@+id/recyclerView"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:nestedScrollingEnabled="false"
|
|
|
|
app:itemMargin="28dp" />
|
|
|
|
</LinearLayout>
|