Android桌面组件App Widget完整案例

 更新时间:2015年09月28日 12:28:58   作者:Ruthless  
这篇文章主要介绍了Android桌面组件App Widget完整案例,较为详细的分析了Android桌面组件App Widget的功能、定义及实现技巧,具有一定参考借鉴价值,需要的朋友可以参考下

脚本之家 / 编程助手:解决程序员“几乎”所有问题!
脚本之家官方知识库 → 点击立即使用

本文实例讲述了Android桌面组件App Widget用法。分享给大家供大家参考。具体如下:

这里模拟一个案例:把AppWidget添加到桌面后,点击AppWidget后AppWidget文本会轮回改变

main.xml布局文件:

1
2
3
4
5
6
7
8
9
10
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
 android:orientation="vertical" android:layout_width="fill_parent"
 android:layout_height="fill_parent">
 <TextView android:id="@+id/tv"
  android:layout_width="fill_parent"
  android:layout_height="wrap_content"
  android:text="程序入口"
  android:textSize="50dip"/>
</LinearLayout>

res/xml/my_appwidget.xml布局文件:

1
2
3
4
5
6
7
8
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider
 xmlns:android="http://schemas.android.com/apk/res/android"
 android:minWidth="120dp"
 android:minHeight="60dp"
 android:updatePeriodMillis="1000"
 android:initialLayout="@layout/main">
</appwidget-provider>

清单文件:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
 package="com.ljq.activity" android:versionCode="1"
 android:versionName="1.0">
 <application android:icon="@drawable/icon"
  android:label="@string/app_name">
  <receiver android:name=".TestActivity">
   <meta-data android:name="android.appwidget.provider"
    android:resource="@xml/my_appwidget">
   </meta-data>
   <intent-filter>
    <action android:name="COM.LJQ.ACTION.WIDGET.CLICK"></action>
    <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
   </intent-filter>
  </receiver>
 </application>
 <uses-sdk android:minSdkVersion="7" />
</manifest>

变量类UtilTool:用来控件文本改变:

1
2
3
4
package com.ljq.activity;
public class UtilTool {
 public static boolean isChange=true;
}

TestActivity类,继承自AppWidgetProvider:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
package com.ljq.activity;
import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.widget.RemoteViews;
public class TestActivity extends AppWidgetProvider {
 // 自定义一个Action名
 private static final String ACTION_CLICK_NAME = "COM.LJQ.ACTION.WIDGET.CLICK";
 private RemoteViews rv;
 @Override
 public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
  System.out.println("onUpdate");
  //获取R.layout.main布局,通过类RemoteViews对布局R.layout.main里的控件进行操作
  /*rv = new RemoteViews(context.getPackageName(), R.layout.main);
  Intent intentClick = new Intent(ACTION_CLICK_NAME);
  PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, intentClick, 0);
  rv.setOnClickPendingIntent(R.id.tv, pendingIntent);
  ComponentName cmp = new ComponentName(context, TestActivity.class);
  AppWidgetManager myAppWidgetManager = AppWidgetManager.getInstance(context);
  myAppWidgetManager.updateAppWidget(cmp, rv);*/
  final int N = appWidgetIds.length;
  for (int i = 0; i < N; i++) {
   int appWidgetId = appWidgetIds[i];
   updateAppWidget(context, appWidgetManager, appWidgetId);
  }
 }
 //AppWidget生命周期: 每接收一次,广播执行一次为一个生命周期结束。
 //也就是说在重写AppWidgetProvider类里面声明全局变量做状态判断,
 //每次状态改变AppWidgetProvider再接收第二次广播时即为你重新初始化也就是说重新实例化了一次AppWidgetProvider。
 //今天我因为在里面放了一个boolean值初始化为true,观察调试看到每次进入都为TRUE故你在设置桌面组件时,
 //全局变量把它声明在另外一个实体类用来判断是没问题的,切忌放在本类。
 @Override
 public void onReceive(Context context, Intent intent) {
  System.out.println("onReceive");
  if (rv == null) {
   rv = new RemoteViews(context.getPackageName(), R.layout.main);
  }
  if (intent.getAction().equals(ACTION_CLICK_NAME)) {
   if (UtilTool.isChange) {
    rv.setTextViewText(R.id.tv, "abc");
   } else {
    rv.setTextViewText(R.id.tv, "123");
   }
   UtilTool.isChange = !UtilTool.isChange;
   AppWidgetManager appWidgetManger = AppWidgetManager.getInstance(context);
   int[] appIds = appWidgetManger.getAppWidgetIds(new ComponentName(context, TestActivity.class));
   appWidgetManger.updateAppWidget(appIds, rv);
  }else{
   super.onReceive(context, intent);
  }
 }
 private void updateAppWidget(Context context,
  AppWidgetManager appWidgeManger, int appWidgetId) {
  rv = new RemoteViews(context.getPackageName(), R.layout.main);
  Intent intentClick = new Intent();
  intentClick.setAction(ACTION_CLICK_NAME);
  PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, intentClick, 0);
  rv.setOnClickPendingIntent(R.id.tv, pendingIntent);
  appWidgeManger.updateAppWidget(appWidgetId, rv);
 }
}

希望本文所述对大家的Android程序设计有所帮助。

蓄力AI

微信公众号搜索 “ 脚本之家 ” ,选择关注

程序猿的那些事、送书等活动等着你

相关文章

  • 详谈Android编译命令

    详谈Android编译命令

    本文给大家详细介绍了Android中常用的编译命令、用法以及注意事项,非常的详细,有需要的小伙伴可以参考下
    2016-03-03
  • 解析Android声明和使用权限

    解析Android声明和使用权限

    这篇文章主要介绍了解析Android声明和使用权限,对学习android有一定的帮助,有需要的的可以了解一下。
    2016-11-11
  • 详解如何魔改Retrofit实例

    详解如何魔改Retrofit实例

    这篇文章主要为大家介绍了详解如何魔改Retrofit实例,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪
    2022-11-11
  • Kotlin Option与Either及Result实现异常处理详解

    Kotlin Option与Either及Result实现异常处理详解

    Kotlin异常处理,异常是在程序运行时可能发生的不必要的问题,并突然终止您的程序。异常处理是一个过程,使用它可以防止程序出现可能破坏我们代码的异常
    2022-12-12
  • Android开发之利用Intent实现数据传递的方法

    Android开发之利用Intent实现数据传递的方法

    这篇文章主要介绍了Android开发之利用Intent实现数据传递的方法,实例分析了Intent传递数据的原理与相关使用技巧,需要的朋友可以参考下
    2016-03-03
  • 详解Android中weight的使用方法

    详解Android中weight的使用方法

    这篇文章主要向大家介绍了详解Android中weight的使用方法,感兴趣的小伙伴们可以参考一下
    2016-01-01
  • Android ReboundScrollView仿IOS拖拽回弹效果

    Android ReboundScrollView仿IOS拖拽回弹效果

    这篇文章主要为大家详细介绍了Android ReboundScrollView仿IOS拖拽回弹效果,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2016-11-11
  • Android中ToggleButton开关状态按钮控件使用方法详解

    Android中ToggleButton开关状态按钮控件使用方法详解

    这篇文章主要为大家详细介绍了Android中ToggleButton开关状态按钮控件的使用方法,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2017-08-08
  • Android开发中的文件操作工具类FileUtil完整实例

    Android开发中的文件操作工具类FileUtil完整实例

    这篇文章主要介绍了Android开发中的文件操作工具类FileUtil,结合完整实例形式分析了Android文件操作的常用技巧,包括文件的获取、遍历、搜索、复制、删除、判断等功能,需要的朋友可以参考下
    2017-11-11
  • Android9.0 静默安装源码的实现

    Android9.0 静默安装源码的实现

    这篇文章主要介绍了Android9.0 静默安装源码的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2020-01-01

最新评论