标签: android notifications android-intent
我看过文档。但我发现只有一种方法可以通过Intent点击我的活动
PendingIntent contentIntent = PendingIntent.getActivity(this, 0, new Intent(this, MyMain.class), 0);
但是我如何做出一些动作,例如在wievflipper中切换视图然后才开始活动?
答案 0 :(得分:2)
您需要为Intent添加额外内容,然后检索活动中的内容。
请参阅putExtra(...)方法。
另外,请参阅Lars Vogel's tutorial以获取完整的工作代码。