2018-04-26 安卓桌面插件點擊判斷ID

關(guān)鍵詞 widget仲锄,AppWidgetID,桌面呢岗,小部件,Android蛹尝,安卓后豫,點擊,Action

主要是intent傳遞時候不能用 intent.putExtra 來傳遞要保留的數(shù)據(jù)突那,而是直接用intent.setAction來傳遞

package hello.world.myapplication;

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.net.Uri;
import android.util.Log;
import android.widget.RemoteViews;
import android.widget.TextView;
import android.widget.Toast;

import java.util.HashSet;
import java.util.Iterator;
import java.util.Set;

import static android.content.ContentValues.TAG;

/**
 * Implementation of App Widget functionality.
 */


public class NewAppWidget extends AppWidgetProvider {
    private static final String CLICK_ACTION="callChangePic";

    void updateAppWidget(Context context, AppWidgetManager appWidgetManager,
                                int appWidgetId) {
// Construct the RemoteViews object
        RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.new_app_widget);
        views.setTextViewText(R.id.appwidget_text, ""+appWidgetId);
        views.setOnClickPendingIntent(R.id.appwidget_text,getPendingSelfIntent(context,CLICK_ACTION,appWidgetId));
// Instruct the widget manager to update the widget
        appWidgetManager.updateAppWidget(appWidgetId, views);
    }

    //小部件被添加時或者每次小部件更新時都會調(diào)用一次該方法挫酿,,每
// 個周期小部件都會自動更新一次愕难,不是點擊的時候更新早龟,
// 而是到指定配置文件時間的時候才更新
    @Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
// There may be multiple widgets active, so update all of them
        for (int appWidgetId : appWidgetIds) {
            updateAppWidget(context, appWidgetManager, appWidgetId);
        }
    }

    @Override
    public void onEnabled(Context context) {
// Enter relevant functionality for when the first widget is created
    }

    @Override
    public void onDisabled(Context context) {
// Enter relevant functionality for when the last widget is disabled
    }

    protected PendingIntent getPendingSelfIntent(Context context, String action, int appWidgetId) {
        Intent intent = new Intent(context, getClass());
        intent.setAction(CLICK_ACTION+String.valueOf(appWidgetId));
        return PendingIntent.getBroadcast(context, 0, intent, 0);
    }

    @Override
    public void onReceive(Context context, Intent intent) {
        super.onReceive(context, intent);
        String action = intent.getAction();
        if (action.startsWith(CLICK_ACTION))
        {
            int widgetId = Integer.parseInt(action.substring(CLICK_ACTION.length()));
            Toast.makeText(context,"當(dāng)前點擊的ID__"+widgetId,Toast.LENGTH_LONG).show();
            AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
        }
    }

}

abc

下面這種也可以點擊顯示當(dāng)前ID號惫霸,不過問題是新建時候也會跑進去一次,android:updatePeriodMillis時間到了葱弟,又跑進去一次

package com.jessicathornsby.widget;

import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.Context;
import android.widget.RemoteViews;
import android.app.PendingIntent;
import android.content.Intent;
import android.net.Uri;
import java.text.DateFormat;
import java.util.Date;
import android.widget.Toast;


public class NewAppWidget extends AppWidgetProvider {
    static void updateAppWidget(Context context,
                                AppWidgetManager appWidgetManager,
                                int appWidgetId) {

        RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.new_app_widget);

        Intent intentUpdate = new Intent(context, NewAppWidget.class);
        intentUpdate.setAction(AppWidgetManager.ACTION_APPWIDGET_UPDATE);


        int[] idArray = new int[]{appWidgetId};
        intentUpdate.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, idArray);

        PendingIntent pendingUpdate = PendingIntent.getBroadcast(
                context, appWidgetId, intentUpdate,
                PendingIntent.FLAG_UPDATE_CURRENT);
        views.setOnClickPendingIntent(R.id.update, pendingUpdate);
//Request that the AppWidgetManager updates the application widget, by passing widgetId and the RemoteViews object//

        appWidgetManager.updateAppWidget(appWidgetId, views);
    }


    @Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
        for (int appWidgetId : appWidgetIds) {
            updateAppWidget(context, appWidgetManager, appWidgetId);
            Toast.makeText(context, appWidgetId+"ID" +
                    "==Widget has been updated! ", Toast.LENGTH_SHORT).show();
        }
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末壹店,一起剝皮案震驚了整個濱河市,隨后出現(xiàn)的幾起案子芝加,更是在濱河造成了極大的恐慌硅卢,老刑警劉巖,帶你破解...
    沈念sama閱讀 211,290評論 6 491
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件藏杖,死亡現(xiàn)場離奇詭異将塑,居然都是意外死亡,警方通過查閱死者的電腦和手機蝌麸,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,107評論 2 385
  • 文/潘曉璐 我一進店門点寥,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人来吩,你說我怎么就攤上這事敢辩。” “怎么了误褪?”我有些...
    開封第一講書人閱讀 156,872評論 0 347
  • 文/不壞的土叔 我叫張陵责鳍,是天一觀的道長。 經(jīng)常有香客問我兽间,道長历葛,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 56,415評論 1 283
  • 正文 為了忘掉前任嘀略,我火速辦了婚禮恤溶,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘帜羊。我一直安慰自己咒程,他們只是感情好,可當(dāng)我...
    茶點故事閱讀 65,453評論 6 385
  • 文/花漫 我一把揭開白布讼育。 她就那樣靜靜地躺著帐姻,像睡著了一般。 火紅的嫁衣襯著肌膚如雪奶段。 梳的紋絲不亂的頭發(fā)上饥瓷,一...
    開封第一講書人閱讀 49,784評論 1 290
  • 那天,我揣著相機與錄音痹籍,去河邊找鬼呢铆。 笑死,一個胖子當(dāng)著我的面吹牛蹲缠,可吹牛的內(nèi)容都是我干的棺克。 我是一名探鬼主播悠垛,決...
    沈念sama閱讀 38,927評論 3 406
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼娜谊!你這毒婦竟也來了确买?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,691評論 0 266
  • 序言:老撾萬榮一對情侶失蹤因俐,失蹤者是張志新(化名)和其女友劉穎拇惋,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體抹剩,經(jīng)...
    沈念sama閱讀 44,137評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡撑帖,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,472評論 2 326
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了澳眷。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片胡嘿。...
    茶點故事閱讀 38,622評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖钳踊,靈堂內(nèi)的尸體忽然破棺而出衷敌,到底是詐尸還是另有隱情,我是刑警寧澤拓瞪,帶...
    沈念sama閱讀 34,289評論 4 329
  • 正文 年R本政府宣布缴罗,位于F島的核電站,受9級特大地震影響祭埂,放射性物質(zhì)發(fā)生泄漏面氓。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,887評論 3 312
  • 文/蒙蒙 一蛆橡、第九天 我趴在偏房一處隱蔽的房頂上張望舌界。 院中可真熱鬧,春花似錦泰演、人聲如沸呻拌。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,741評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽藐握。三九已至,卻和暖如春垃喊,著一層夾襖步出監(jiān)牢的瞬間猾普,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,977評論 1 265
  • 我被黑心中介騙來泰國打工缔御, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留,地道東北人妇蛀。 一個月前我還...
    沈念sama閱讀 46,316評論 2 360
  • 正文 我出身青樓耕突,卻偏偏與公主長得像笤成,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子眷茁,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,490評論 2 348