android - 如何使 Android 直接回复通知功能在 Android N 之前的设备上工作?

标签 android android-notifications backwards-compatibility

我正在尝试在我的应用中实现 Android 直接回复通知。 我已经成功地在 Android N 模拟器中实现了它。但它不适用于 Marshmallow 设备。当我单击通知中的操作按钮时,回复编辑文本不会显示在 Android N 以下的设备中。我知道此功能适用于 Android N 之前的设备,因为它在 WhatsApp 中可用。

我的问题是如何让它在 Android N 之前的设备上运行?我在这里分享我的代码。任何帮助都会很棒。谢谢。

主要 Activity

import android.app.Notification;
import android.app.NotificationManager;
import android.app.PendingIntent;
import android.app.RemoteInput;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.support.design.widget.FloatingActionButton;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.widget.Toolbar;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;

public class MainActivity extends AppCompatActivity {

// Key for the string that's delivered in the action's intent.
public static final String KEY_TEXT_REPLY = "key_text_reply";
private static final int notificationID = 1234;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);




    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
    fab.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {

        startNotif();
        }
    });
}

private void startNotif() {

    Intent intent = new Intent(this, NotificationReciever.class);
// use System.currentTimeMillis() to have a unique ID for the pending intent
    final PendingIntent pIntent = PendingIntent.getActivity(this, (int) System.currentTimeMillis(), intent, 0);

    String replyLabel = "Reply";
    RemoteInput remoteInput = new RemoteInput.Builder(KEY_TEXT_REPLY)
            .setLabel(replyLabel)
            .build();

    // Create the reply action and add the remote input.
    Notification.Action action =
            new Notification.Action.Builder(R.drawable.ic_send,
                    "Action", pIntent)
                    .addRemoteInput(remoteInput)
                    .build();

    // Build the notification and add the action.
    Notification newMessageNotification =
            new Notification.Builder(MainActivity.this)
                    .setSmallIcon(R.drawable.ic_remove_circle_black_48dp)
                    .setContentTitle("Title")
                    .setContentText("Content")
                    .addAction(action).build();

// Issue the notification.
    NotificationManager manager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);
    manager.notify(notificationID, newMessageNotification);
    }
}

通知接收者

import android.app.Activity;
import android.app.RemoteInput;
import android.content.Intent;
import android.os.Bundle;
import android.widget.Toast;

/**
 * Created by User on 13-Jun-16.
 */
public class NotificationReciever extends Activity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        Toast.makeText(this,getMessageText(getIntent()),Toast.LENGTH_SHORT).show();
    }

    private CharSequence getMessageText(Intent intent) {
        Bundle remoteInput = RemoteInput.getResultsFromIntent(intent);
        if (remoteInput != null) {
            return remoteInput.getCharSequence(MainActivity.KEY_TEXT_REPLY);
        }
        Toast.makeText(this,"Remoteinput is null",Toast.LENGTH_SHORT).show();

        return null;
    }
}

最佳答案

在文档中,它告诉您不要为低于 N 的 api 使用广播接收器或服务。因此您必须启动一个 Activity 来执行您想要的操作,并将其包装在待处理的 Intent 中。

if (isDirectReplySupported) {
  return PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_ONE_SHOT);
}
return PendingIntent.getActivity(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);

关于android - 如何使 Android 直接回复通知功能在 Android N 之前的设备上工作?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37850602/

相关文章:

python-2.7 - 在 NLTK 中导入 compat 错误并使用 BrowServer 浏览 NLTK Wordnet 数据库以进行词形还原

ARMv8 向后兼容 ARMv7(Snapdragon 820 与 Cortex-A15)

android - 安卓相机

android - 不要让推送通知下拉

android - 如何在 Android 上动态更新 ListView

带有按钮的 Android 通知

android - 从 Notification Intent 开始时保持 Activity 状态

xcode - 测试 OSX 向后兼容性

android - 我无法将两张图片放在布局的中心

java - Android 正则表达式不匹配