mirror of
https://github.com/MaintainTeam/LastPipeBender.git
synced 2025-03-04 15:28:21 +03:00
-Removed stream id from playlist stream join table since only foreign constraint is needed. -Added bar to playlist control UI. -Modified local playlist fragment to no longer save when out of focus.
43 lines
No EOL
1.5 KiB
XML
43 lines
No EOL
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginBottom="12dp"
|
|
android:background="?attr/selectableItemBackground"
|
|
android:clickable="true"
|
|
android:focusable="true">
|
|
|
|
<ImageView
|
|
android:id="@+id/whatsNewIcon"
|
|
android:layout_width="48dp"
|
|
android:layout_height="28dp"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="12dp"
|
|
android:layout_marginRight="12dp"
|
|
android:src="?attr/rss"
|
|
tools:ignore="ContentDescription,RtlHardcoded"/>
|
|
|
|
<TextView
|
|
android:id="@+id/whatsNew"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:layout_toRightOf="@+id/whatsNewIcon"
|
|
android:gravity="left|center"
|
|
android:text="@string/fragment_whats_new"
|
|
android:textAppearance="?android:attr/textAppearanceLarge"
|
|
android:textSize="15sp"
|
|
android:textStyle="bold"
|
|
tools:ignore="RtlHardcoded"/>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:layout_below="@+id/whatsNew"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_marginRight="8dp"
|
|
android:background="?attr/separator_color"/>
|
|
|
|
</RelativeLayout> |