我有一个正在从其调用intentservice的广播接收器。我想将在intentservice中接收的数据发送到一个 Activity 。String s = extras.getString(“Notice”)。我想将此接收到的字符串发送到一个新 Activity

最佳答案

@Override
protected void onHandleIntent(Intent arg0) {
   Intent dialogIntent = new Intent(getBaseContext(), myActivity.class);
    dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
     dialogIntent.putExtra("value", extras.getString("Notice"));
     getApplication().startActivity(dialogIntent);
}

关于android - 将数据从 Intent 服务传递到 Activity ,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25928804/

10-09 01:57