任何人都可以帮我解决这个问题。
我在该应用程序中有一个简单的Android应用程序我在点击通知时收到通知投掷服务我在该类中打开新类我想在textview中显示通知文本
我怀疑如何将通知文本传递给活动
提前致谢
答案 0 :(得分:1)
您将使用startActivity(intent);
开始活动
在您执行此操作之前,请添加intent.putExtraString(key,value)
。
在内部活动中,使用getIntent().getStringExtra(key)
答案 1 :(得分:0)
要查看活动中的消息并设置为textView,请通知
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
onNewIntent(getIntent());
}
@Override
public void onNewIntent(Intent intent){
Bundle extras = intent.getExtras();
if(extras != null){
if(extras.containsKey("NotificationMessage"))
{
setContentView(R.layout.notification_sample);
String message = extras.getString("NotificationMessage");
textView = (TextView) findViewById(R.id.textMessage);
textView.setText(message);
}
}
}