本文主要是介绍PendingIntent 的用法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Intent intentCancle = new Intent();
intentCancle.setAction("a.a.a");
PendingIntent piCancle = PendingIntent.getBroadcast(ServiceTest.this, 0, intentCancle, 0);
n.deleteIntent = piCancle;
这样通过广播就可以去做自己想做的事情了
1.<?xml version="1.0" encoding="utf-8"?>
2.<ScrollView
3. android:layout_width="fill_parent"
4. android:layout_height="fill_parent"
5. xmlns:android="http://schemas.android.com/apk/res/android">
6.<LinearLayout
7. android:orientation="vertical"
8. android:layout_width="fill_parent"
9. android:layout_height="fill_parent"
10. >
11.<TextView android:id="@+id/updatetv"
12. android:layout_width="fill_parent"
13. android:layout_height="wrap_content"
14. />
15.</LinearLayout>
16.</ScrollView>
这篇关于PendingIntent 的用法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!