Android原生Widget使用步骤

需要创建三个XML文件以及一个Class文件
三个XML文件分别是

  1. Widget布局文件
java 复制代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@android:color/white">
    <TextView
        android:id="@+id/textView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:text="Hello, Widget!"
        android:textSize="20sp" />
</RelativeLayout>
  1. WidgetInfoProvider文件
java 复制代码
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
    android:minWidth="40dp"
    android:minHeight="40dp"
    android:updatePeriodMillis="86400000"
    android:initialLayout="@layout/widght_layout"
    android:resizeMode="horizontal|vertical"
    android:widgetCategory="home_screen|keyguard"
    android:previewImage="@drawable/ic_launcher_background" />
  1. AndroidMainfest文件

3.1 在receiver标签下,添加广播的Action

3.2 在meta-data标签下,表明这个广播接收器是一个原生Widget,并加载原生Widget配置文件

java 复制代码
    <receiver
        android:name=".MyTimeWidget"
        android:exported="true">
        <intent-filter>
            <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
            <action android:name="com.ljheee.widget.UPDATE_TIME" />
        </intent-filter>

        <meta-data
            android:name="android.appwidget.provider"
            android:resource="@xml/my_time_widget_info" />
    </receiver>

4.继承AppWidgetProvider(实际上是一个广播接收器)

java 复制代码
public class MyWidget extends AppWidgetProvider {

    @Override
    public void onEnabled(Context context) {
        super.onEnabled(context);
        // 在第一个 Widget 实例添加到桌面时调用
    }

    @Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
        super.onUpdate(context, appWidgetManager, appWidgetIds);
        final int N = appWidgetIds.length;
        for (int i = 0; i < N; i++) {
            int appWidgetId = appWidgetIds[i];
            // 创建 RemoteViews 对象,用于更新 Widget 布局
            RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widght_layout);
            // 在这里可以对 RemoteViews 进行更多的操作,例如设置文本、图片等
            // 创建一个 Intent,用于点击事件
            Intent intent = new Intent(context, MyWidget.class);
            intent.setAction("com.example.myapp.ACTION_CLICK");
            PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
            // 更新 Widget
            appWidgetManager.updateAppWidget(appWidgetId, views);
        }
    }

    @Override
    public void onDisabled(Context context) {
        super.onDisabled(context);
        // 在最后一个 Widget 实例从桌面移除时调用
    }

    @Override
    public void onRestored(Context context, int[] oldWidgetIds, int[] newWidgetIds) {
        super.onRestored(context, oldWidgetIds, newWidgetIds);
    }

    @Override
    public void onDeleted(Context context, int[] appWidgetIds) {
        super.onDeleted(context, appWidgetIds);
        // 当 Widget 被删除时调用
    }

    @Override
    public void onReceive(Context context, Intent intent) {
        super.onReceive(context, intent);
        // 接收广播消息,可以处理 Widget 的点击等事件
        if (intent.getAction().equals("com.example.myapp.ACTION_CLICK")) {
            // 处理点击事件
            // 可以在此处添加相应的逻辑,如更新 Widget 内容或执行其他操作
        }
    }
}
相关推荐
执着的小火车2 分钟前
【2024华为OD-E卷-100分-火星文计算】(题目+思路+Java&C++&Python解析)
java·数据结构·c++·算法·华为od·华为
lly2024068 分钟前
MySQL 函数
开发语言
矮油0_o12 分钟前
30天开发操作系统 第 11 天 --制作窗口
c语言·开发语言·c++·系统架构
刀客12317 分钟前
C++ 基础思维导图(一)
开发语言·c++
_周游29 分钟前
【C语言】_指针变量
c语言·开发语言
踏上青云路30 分钟前
vs 2022 中xml 粘贴为Class 中,序列化出来的xml 的使用
xml·java·开发语言
蚰蜒螟39 分钟前
java class类对象 加载时机
java·开发语言
wangyue441 分钟前
c# 服务中启动exe窗体程序
开发语言·microsoft·c#
_DCG_1 小时前
c++之左值引用 右值引用 万能引用
java·开发语言·c++
是程序喵呀1 小时前
JDK、JRE、JVM的区别
java·开发语言·jvm