サービスからActivityのonNewIntent()を実行するには? インテントの発火中に与えられるフラグは何ですか??
質問する
5568 次
2 に答える
3
onNewIntent
システムから呼び出されるので、自分で呼び出すことはできません。アクティビティが起動されたインテントを処理できる場合は、自動的に呼び出されます。インテントと関連するインテントフィルタを確認してください。
これは、アクティビティがシングルトップであり、アクティビティのOncreateがすでに呼び出されている場合にのみ呼び出されます。
于 2012-09-14T06:37:18.187 に答える
1
例として通知のために何かをしたい場合は、このメソッドをオーバーライドする必要があります
NotificationManager notificationManager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification notification = new Notification(com.example.xyz.R.drawable.ic_launcher,message1, when);
Intent notificationIntent = new Intent(context,com.example.xyz.DemoActivity.class);
// set intent so it does not start a new activity
notificationIntent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP |Intent.FLAG_ACTIVITY_SINGLE_TOP);
notificationIntent.putExtra("MESSAGE",pkgName);
notificationIntent.putExtra("APP_STATUS", AppStatus);
notificationIntent.putExtra("APP_NAME",AppName);
//PendingIntent.FLAG_UPDATE_CURRENT will update the notification
PendingIntent intent=PendingIntent.getActivity(context, 0, notificationIntent,PendingIntent.FLAG_UPDATE_CURRENT );
notification.setLatestEventInfo(context, title, message1, intent);
notification.flags |= Notification.FLAG_AUTO_CANCEL;
notificationManager.notify(0, notification);
そして私の DemoActivity.class は似ています
public class DemoActivity extends Activity{
public static String BROADCAST_ACTION = "com.example.android.APP_CLOUD_DELETE_APK";
private TextView messsageText,NotificationHeader;
private Button okButton;
private int AppStatusId;
private String PkgName,app_name,ApkFileName;
private RegisterTask mRegisterTask;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.demo_activity);
// if this activity is not in stack , this mwthod will be called
}
@Override
protected void onNewIntent(Intent intent) {
// TODO Auto-generated method stub
// if this activity is in stack , this mwthod will be called
}
于 2012-09-14T07:36:14.343 に答える