Files
Opus/Opus/Resources/layout/HomePlaylists.xml

44 lines
1.5 KiB
XML

<?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"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:elevation="6dp"
android:background="?android:panelBackground"
android:layout_marginTop="10dp"
android:layout_marginBottom="10dp"
android:orientation="vertical">
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="22dp"
android:paddingLeft="20dp"
android:layout_centerVertical="true"
android:textStyle="bold"
android:layout_toLeftOf="@id/viewMore"
android:layout_alignParentLeft="true"/>
<Button
android:id="@+id/viewMore"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@string/more"
app:backgroundTint="?colorAccent"
android:layout_marginTop="5dp"
android:layout_marginRight="20dp"
android:layout_alignParentRight="true" />
</RelativeLayout>
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:nestedScrollingEnabled="false"
android:id="@+id/lineRecycler" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="?blackSeperatorColor"/>
</LinearLayout>