mirror of
https://github.com/TeamNewPipe/NewPipe
synced 2024-11-20 00:34:55 +00:00
b43c56085d
- Implement cache - Abstract player - Quality selector - Fullscreen switcher - Change some drawables
82 lines
2.9 KiB
XML
82 lines
2.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/notificationContent"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="true"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:background="@color/background_notification_color">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="64dp"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/notificationCover"
|
|
android:layout_width="64dp"
|
|
android:layout_height="64dp"
|
|
android:src="@drawable/dummy_thumbnail"
|
|
android:scaleType="centerCrop"/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="8dp"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical" >
|
|
|
|
<TextView
|
|
android:id="@+id/notificationSongName"
|
|
style="@android:style/TextAppearance.StatusBar.EventContent.Title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="marquee"
|
|
android:singleLine="true"
|
|
android:text="title" />
|
|
|
|
<TextView
|
|
android:id="@+id/notificationArtist"
|
|
style="@android:style/TextAppearance.StatusBar.EventContent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:ellipsize="marquee"
|
|
android:singleLine="true"
|
|
android:text="artist" />
|
|
</LinearLayout>
|
|
|
|
<ImageButton
|
|
android:id="@+id/notificationRewind"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_margin="5dp"
|
|
android:background="#00ffffff"
|
|
android:clickable="true"
|
|
android:scaleType="fitXY"
|
|
android:src="@drawable/ic_action_av_fast_rewind" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/notificationPlayPause"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_margin="5dp"
|
|
android:background="#00ffffff"
|
|
android:clickable="true"
|
|
android:scaleType="fitXY"
|
|
android:src="@drawable/ic_pause_white" />
|
|
|
|
<ImageButton
|
|
android:id="@+id/notificationStop"
|
|
android:layout_width="40dp"
|
|
android:layout_height="40dp"
|
|
android:layout_margin="5dp"
|
|
android:background="#00ffffff"
|
|
android:clickable="true"
|
|
android:scaleType="fitXY"
|
|
android:src="@drawable/ic_close_white" />
|
|
</LinearLayout>
|
|
|
|
|
|
</RelativeLayout> |