始终从通知意图android

时间:2017-08-11 06:26:23

标签: java android push-notification notifications android-notifications

始终获取bundle null ....

这是我的代码;

  edt=(EditText)findViewById(R.id.edt);

    String msg=edt.getText().toString();

    //create Intent
     Intent myIntent = new Intent(this, ScondActivity.class);
    myIntent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP | Intent.FLAG_ACTIVITY_CLEAR_TOP);

    //Here I pass Data;
    myIntent.putExtra("msg",msg);

    //Initialize PendingIntent
    pendingIntent = PendingIntent.getActivity(this, 0, myIntent, PendingIntent.FLAG_UPDATE_CURRENT);
    //Initialize NotificationManager using Context.NOTIFICATION_SERVICE
    notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);

    //Create listener to listen button click
    OnClickListener listener = new OnClickListener() {
        public void onClick(View view) {
            //Prepare Notification Builder
            notificationBuilder = new NotificationCompat.Builder(MainActivity.this)
                    .setContentTitle("Notification Demo").setSmallIcon(R.mipmap.ic_launcher).setContentIntent(pendingIntent)
                    .setContentText(edt.getText().toString());
            //add sound
            Uri uri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
            notificationBuilder.setSound(uri);
            //vibrate
            long[] v = {500,1000};
            notificationBuilder.setVibrate(v);
            notificationBuilder .setContentIntent(pendingIntent);
            notificationManager.notify(1, notificationBuilder.build());
        }
    };
    Button btn = (Button)findViewById(R.id.button);
    btn.setOnClickListener(listener);

ScondActivity.java

public class ScondActivity extends Activity {
TextView textView;
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.msglayout);

}

@Override
public void onNewIntent(Intent intent){

    Bundle extras = getIntent().getExtras();
    textView = (TextView)findViewById(R.id.msg);

    if(extras != null) {
        String tabNumber = extras.getString("msg");
        textView.setText(tabNumber);
        Log.d("TEMP", "Tab Number: " + tabNumber);

    } else {
        Log.d("TEMP", "Extras are NULL");
    }
}
 }

2 个答案:

答案 0 :(得分:1)

使用onNewIntent(Intent intent)方法获取数据。

@Override
protected void onNewIntent(Intent intent) 
 {
   super.onNewIntent(intent);
   //code
 }

答案 1 :(得分:0)

我只是解决了我的问题.....我在按钮点击事件中定义了Intent for SecondActivity。所以,我得到了包空白。我的代码看起来像这样....

 edt=(EditText)findViewById(R.id.edt);

    //create Intent

    //Create listener to listen button click
    OnClickListener listener = new OnClickListener() {
        public void onClick(View view) {
            //Prepare Notification Builder

            Intent myIntent = new Intent(MainActivity.this, NotificationActivity.class);
            myIntent.putExtra("msg",edt.getText().toString());
            myIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP );

            //Initialize PendingIntent
            pendingIntent = PendingIntent.getActivity(MainActivity.this, 0, myIntent, PendingIntent.FLAG_UPDATE_CURRENT);
            //Initialize NotificationManager using Context.NOTIFICATION_SERVICE
            notificationManager = (NotificationManager)getSystemService(Context.NOTIFICATION_SERVICE);


            notificationBuilder = new NotificationCompat.Builder(MainActivity.this)
                    .setContentTitle("Notification Demo").
                            setSmallIcon(R.mipmap.ic_launcher).
                            setContentIntent(pendingIntent)
                    .setContentText(edt.getText().toString());
            //add sound
            Uri uri = RingtoneManager.getDefaultUri(RingtoneManager.TYPE_NOTIFICATION);
            notificationBuilder.setSound(uri);
            notificationBuilder .setWhen(System.currentTimeMillis());
            //vibrate
            long[] v = {500,1000};
            notificationBuilder.setVibrate(v);
            notificationManager.notify(1, notificationBuilder.build());
        }
    };
    Button btn = (Button)findViewById(R.id.button);
    btn.setOnClickListener(listener);