如何在通知中添加SimpleExoPlayerView

时间:2017-09-06 15:22:23

标签: android notifications exoplayer

我尝试在锁定屏幕通知上添加SimpleExoPlayerView控件。 我想在开始播放活动音乐时创建通知播放器控件。

enter image description here

<?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:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/colorAccent">
    <ImageView
        android:layout_width="20dp"
        android:layout_height="20dp"
        android:layout_marginTop="5dp"
        android:layout_marginRight="5dp"
        android:layout_gravity="right"
        android:src="@drawable/close"/>
    <com.google.android.exoplayer2.ui.SimpleExoPlayerView
        android:id="@+id/audio_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:visibility="visible"
        app:controller_layout_id="@layout/notf_playback_control"
        app:hide_on_touch="false"
        app:show_timeout="0" />
</LinearLayout>

0 个答案:

没有答案