Android桌面小部件AppWidget

本文的代码实现的功能:假设桌面小部件只包含一个Button和一个TextView,当点击Button后,后台启动一个服务(IntentService实现),该服务每个一秒发送一个简单的字符串消息数据data,然后将此消息数据更新到桌面小部件的TextView里面实时显示。

这次,在Androidmanifest.xml有关receiver的定义中,与附录文章1相比,将增加一个action:action_update。本例中,Button的按击事件将触发后台启动服务,后台服务Service每隔一秒制造一个简单字符串数据,然后将此数据实时的以广播形式发给AppWidge,AppWidge收到后,就更新到桌面小部件的TextView里面。

(1)定义AppWidget。

先在Androidmanifest.xml里面定义APP widget的,以Android广播形式:

[html]view plaincopy

android:name="android.appwidget.provider"

android:resource="@xml/appwidget"/>

两个用于广播接收的action:action_button和action_update,其中action_button用于在桌面小部件接收用户的点击事件,此action_button将随即启动后台服务,而后台启动的服务将发送广播数据,数据中的广播过滤器即是:action_update。

涉及到的res/xml目录下的appwidget.xml代码文件:

[html]view plaincopy


android:initialLayout="@layout/appwidget_layout"

android:minHeight="20dip"

android:minWidth="300dip"

android:previewImage="@drawable/ic_launcher"

android:resizeMode="horizontal|vertical"

android:updatePeriodMillis="0"

android:widgetCategory="home_screen">

(2)上次Java代码实现窗口小部件。

核心的AppWidget.java代码:

[java]view plaincopy

packagezhangphil.widget;

importandroid.app.PendingIntent;

importandroid.appwidget.AppWidgetManager;

importandroid.appwidget.AppWidgetProvider;

importandroid.content.ComponentName;

importandroid.content.Context;

importandroid.content.Intent;

importandroid.util.Log;

importandroid.widget.RemoteViews;

publicclassAppWidgetextendsAppWidgetProvider {

@Override

publicvoidonReceive(Context context, Intent intent) {

super.onReceive(context, intent);

Log.d(this.getClass().getName(),"onReceive");

if(intent ==null)

return;

String action = intent.getAction();

if(action.equals(Constants.ACTION_UPDATE)) {

String data = intent.getStringExtra(Constants.KEY_DATA);

Log.d(Constants.KEY_DATA, data);

RemoteViews remoteViews =newRemoteViews(context.getPackageName(), R.layout.appwidget_layout);

remoteViews.setTextViewText(R.id.text, data);

AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);

ComponentName componentName =newComponentName(context, AppWidget.class);

appWidgetManager.updateAppWidget(componentName, remoteViews);

}

// 点击了按钮,开始启动一个后台服务

if(action.equals(Constants.ACTION_BUTTON)) {

Intent serviceIntent =newIntent(context, MyService.class);

context.startService(serviceIntent);

}

}

@Override

publicvoidonUpdate(Context context, AppWidgetManager appWidgetManager,int[] appWidgetIds) {

Log.d(this.getClass().getName(),"onUpdate");

Intent intent =newIntent(Constants.ACTION_BUTTON);

PendingIntent pendingIntent = PendingIntent.getBroadcast(context,0, intent,0);

// 小部件在Launcher桌面的布局

RemoteViews remoteViews =newRemoteViews(context.getPackageName(), R.layout.appwidget_layout);

// 事件

remoteViews.setOnClickPendingIntent(R.id.btn, pendingIntent);

// 更新AppWidget

appWidgetManager.updateAppWidget(appWidgetIds, remoteViews);

}

/**

* 删除AppWidget

*/

@Override

publicvoidonDeleted(Context context,int[] appWidgetIds) {

super.onDeleted(context, appWidgetIds);

Log.d(this.getClass().getName(),"onDeleted");

}

@Override

publicvoidonDisabled(Context context) {

super.onDisabled(context);

Log.d(this.getClass().getName(),"onDisabled");

}

/**

* AppWidget首次创建调用

*/

@Override

publicvoidonEnabled(Context context) {

super.onEnabled(context);

Log.d(this.getClass().getName(),"onEnabled");

}

}

RemoteViews用到的appwidget_layout.xml,appwidget_layout.xml即是桌面小部件的布局文件:

[html]view plaincopy


android:layout_width="match_parent"

android:layout_height="wrap_content"

android:orientation="horizontal"

android:background="#33000000">

android:id="@+id/btn"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="启动后台服务">

android:id="@+id/text"

android:text="text"

android:layout_width="wrap_content"

android:layout_height="wrap_content"/>

(3)后台服务Service。

MyService.java代码文件,此service是一个Android IntentService,具体实现也可以是Service。此service功能简单,是有桌面小部件的button按钮触发,然后在后台启动,启动后在一个for循环里面循环产生一个简单的字符串数据通过广播形式广播出去,注意打进去的广播过滤器是:action_update。

[java]view plaincopy

packagezhangphil.widget;

importandroid.app.IntentService;

importandroid.content.Intent;

publicclassMyServiceextendsIntentService {

privatestaticintID =0;

publicMyService() {

super("ZhangPhilService");

}

@Override

publicintonStartCommand(Intent intent,intflags,intstartId) {

returnsuper.onStartCommand(intent, flags, startId);

}

@Override

protectedvoidonHandleIntent(Intent intent) {

myLongTimeTask(ID++);

}

privatevoidmyLongTimeTask(intid) {

for(inti =0; i <5; i++) {

Intent intent =newIntent(Constants.ACTION_UPDATE);

intent.putExtra(Constants.KEY_DATA,"Zhang Phil @ CSDN "+ id +":"+ i);

sendBroadcast(intent);

try{

Thread.sleep(1000);

}catch(InterruptedException e) {

e.printStackTrace();

}

}

}

}

记得要将此service注册到Androidmanifest.xml里面:

[html]view plaincopy

(4)公共变量的定义(次要)。

因为涉及到众多公共变量的写入和读出,所以定义了一个单独的Constants.java代码类,专门定义公共的变量定义:

[java]view plaincopy

packagezhangphil.widget;

publicclassConstants {

publicstaticfinalString ACTION_BUTTON ="action_button";

publicstaticfinalString ACTION_UPDATE ="action_update";

publicstaticfinalString KEY_DATA ="data";

}

(5)完整的代码结构。

如图所示:

最终,代码运行结果如图所示:


http://blog.csdn.net/zhangphil/article/details/50461944

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,922评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,591评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,546评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,467评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,553评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,580评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,588评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,334评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,780评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,092评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,270评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,925评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,573评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,194评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,437评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,154评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,127评论 2 352

推荐阅读更多精彩内容

  • Android桌面小部件AppWidget开发 在Android我们经常可以看到各种桌面小部件,比如时钟、天气、音...
    郑旭泽阅读 21,271评论 7 35
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 172,008评论 25 707
  • 这是谷歌官方给我们提供的一个兼容低版本安卓设备的软件包,里面包囊了只有在安卓3.0以上可以使用的api。而view...
    Ten_Minutes阅读 5,735评论 1 19
  • 意大利是古罗马的发祥地。意大利是个半岛,阿平宁山脉纵观其境,称阿平宁半岛。是地中海北岸三大半岛之一,气候良好,雨水...
    丽克阅读 699评论 0 0
  • 1. 锚定邻域回归 论文题目:Anchored Neighborhood Regression for Fast ...
    阿阿阿阿毛阅读 3,406评论 0 2