android之app widget(二)

來源:互聯網
上載者:User

    PendingIntent:

    //建立PendingIntent的方法:

    getActivity(Context context,int requestCode,Intent intent,int flags)      //啟動一個Activity
    getBroadcast(Context context,int requestCode,Intent intent,int flags)     //發送一個廣播
    getService(Context context,int requestCode,Intent intent,int flags)       //啟動一個服務

 

    RemoteView:所表示的對象運行在不同的進程當中

    //調用app widget按鈕的方法,使用以下的監聽

    remoteViews.setOnClickPendingIntent(控制項ID , pendingIntent方法)

 

    onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds)

    對app widget控制項的具體操作事情在繼承appWidgetProvider的類的複寫方法onUpdate中實現,操作步驟如下:

    1. 建立Intent

    2. 建立PendingIntent,傳入Intent

    3. 建立RemoteViews對象 RemoteViews remoteViews = new RemoteViews(String packageName, int layoutId);

    第一個參數是包含需要設施的layout的包明,可以通過context.getPackageName獲得;第二個參數是布局檔案

    4. 調用remoteViews.setOnClickPendingIntent(綁定處理器的控制項ID , PendingIntent對象)方法

    5. 更新app widget  ,   appWidgetManager.updateAppWidget(appWidgetIds[i] ,remoteViews對象)方法

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.