gpt4 book ai didi

android - 通过安全锁屏上的通知启动 Activity

转载 作者:行者123 更新时间:2023-12-04 10:54:44 26 4
gpt4 key购买 nike

我试图在安全锁屏中显示通知中的 Activity (在非安全锁屏中我实现了这一点)。

我遵循 StackOverflow 的一些问题和答案,但没有解决我的问题。

我将发布部分代码。

MainActivity( Activity )

这是在 中执行的onCreate()

Intent intentService = new Intent(this,NotificationService.class);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
startForegroundService(intentService);

} else {
startService(intentService);
}

通知服务(服务)

这是在 中执行的onStartCommand (尝试在 onCreate 中)
  public void crearNotificacion(){
RemoteViews rmv = new RemoteViews(getPackageName(),R.layout.notification_custom);

/*Intent intent = new Intent(this, wPerfil.class);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);
PendingIntent pIntent = PendingIntent.getActivity(this, 54, intent,PendingIntent.FLAG_UPDATE_CURRENT);*/
Intent intent = new Intent(this,NotificationIntentService.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_CLEAR_TASK);
PendingIntent pendingIntent = PendingIntent.getService(this,54,intent,
PendingIntent.FLAG_UPDATE_CURRENT);

createNotificationChannel();// Este trozo de codigo es para versiones +26
NotificationCompat.Builder builder = new NotificationCompat.Builder(this,CHANNEL_ID)
.setStyle(new NotificationCompat.DecoratedCustomViewStyle())
.setCustomContentView(rmv)
.setSmallIcon(R.drawable.ic_trasnparent)
.setPriority(NotificationCompat.PRIORITY_LOW)
.setContentIntent(pendingIntent)
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
.setShowWhen(false)
.setGroupSummary(false)
.setAutoCancel(true);

startForeground(intentID,builder.build());

}

// CODIGO DE LA DOC DE ANDROID para versiones +26
private void createNotificationChannel() {
// Create the NotificationChannel, but only on API 26+ because
// the NotificationChannel class is new and not in the support library
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
CharSequence name = "Notificacion +26";
String description = "Notificacion para 26+";
int importance = NotificationManager.IMPORTANCE_LOW;
NotificationChannel channel = new NotificationChannel(CHANNEL_ID, name, importance);
channel.setDescription(description);
// Register the channel with the system; you can't change the importance
// or other notification behaviors after this
NotificationManager notificationManager = getSystemService(NotificationManager.class);
notificationManager.createNotificationChannel(channel);

}
}

通知 Intent 服务(IntentService)
 @Override
protected void onHandleIntent(Intent intent) {
if (intent != null) {
handleNotfication();
}
}


private void handleNotfication(){
Intent intent = new Intent(this,wPerfil.class);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK|Intent.FLAG_ACTIVITY_CLEAR_TASK);
startActivity(intent);
}

ClassWhatIWantToLoad( Activity )

这是在 中执行的onCreate
  if (Build.VERSION.SDK_INT >= 27) {
setShowWhenLocked(true);
setTurnScreenOn(true);
}else{
getWindow().addFlags(
WindowManager.LayoutParams.FLAG_SHOW_WHEN_LOCKED |
WindowManager.LayoutParams.FLAG_TURN_SCREEN_ON |
WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON |
WindowManager.LayoutParams.FLAG_FULLSCREEN);
}

list 中授予的权限
 <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />
<uses-permission android:name="android.permission.ACTION_MANAGE_OVERLAY_PERMISSION" />

希望这部分代码可以帮助您理解我的问题。我在其他一些问题中读到人们做到这一点,我做同样的事情,但我不能。怎么了?如果您有其他解决方案,例如我可以在 lockScreen 中打开的小部件,请告诉我。

最佳答案

尝试从通知创建中删除
.setContentIntent(pendingIntent)
而是添加
rmv.setOnClickPendingIntent(R.id.layoutID, pendingIntent);
在通知上设置自定义 View 之前。 R.id.layoutID 应该是您的自定义通知布局的相对布局的 ID。

关于android - 通过安全锁屏上的通知启动 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59283626/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com