短視訊帶貨原始碼,android 自定義常駐通知欄

zhibo系統開發發表於2022-06-28

短視訊帶貨原始碼,android 自定義常駐通知欄

1、自定義xml 如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="
    xmlns:tools="
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
   >
 
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:src="@mipmap/ic_launcher" />
 
    <TextView
        android:id="@+id/tvTitle"
        style="@style/TextAppearance.Compat.Notification.Title"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_weight="1"
        android:ellipsize="end"
        android:maxLength="15"
        android:paddingLeft="5dp"
        android:paddingRight="5dp"
        android:singleLine="true"
        android:text="點選關閉音訊" />
 
    <ImageView
        android:id="@+id/ivStop"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:src="@drawable/ic_baseline_stop_circle_24" />
</LinearLayout>


注意:style="@style/TextAppearance.Compat.Notification.Title" 這是google官方的建議、一般加到我們Textview中。

2、加入許可權 

<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />


部分裝置需要加入 懸浮窗許可權

<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />


3、詳細程式碼

 public void createMusicNotification(Context context) {
 
        NotificationManager notificationManager = (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);
  
        //android 8.0的判斷、需要加入NotificationChannel
        if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.O) {
            NotificationChannel channel = new NotificationChannel("qiqile", "齊齊樂渠道",
                    NotificationManager.IMPORTANCE_DEFAULT);
            notificationManager.createNotificationChannel(channel);
        }
 
        NotificationCompat.Builder builder = new NotificationCompat.Builder(context, "qiqile");
         //自定義佈局必須加上、否則佈局會有顯示問題、可以自己try try 
        builder.setSmallIcon(R.mipmap.ic_launcher);
        builder.setOngoing(true);//代表是常駐的,主要是配合服務
 
        RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.notify_custom);
        //自定義點選事件、會在Service. onStartCommand中回撥
        Intent stopIntent = new Intent(context, MediaService.class);
        stopIntent.setAction(STOP_PLAY_SERVICE);
 
        PendingIntent startOrPauseP = PendingIntent.getService(context, MediaService.RELEASE, stopIntent, 0);
        remoteViews.setOnClickPendingIntent(R.id.ivStop, startOrPauseP);
 
        builder.setContent(remoteViews);
        Notification notification = builder.build();
      //0x11 為通知id 自定義可
        startForeground(0x11, notification);
    }


以上就是 短視訊帶貨原始碼,android 自定義常駐通知欄,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2903143/,如需轉載,請註明出處,否則將追究法律責任。

相關文章