基於Android AppWidgetProvider的使用介紹

來源:互聯網
上載者:User

AppWidgetProvider 用來在HOME頁面顯示外掛程式

實現步驟:
1、為AppWidget提供一個元布局檔案AppWigdetProvider_Provider.xml,用來顯示Widget的介面。
2、建立一個類繼承自AppWidgetProvider,並覆寫裡面的相關的方法。
3、為WidgetProvider建立一個引用的布局檔案,或者直接用main.xml。
4、在程式中註冊Manifest.xml。

代碼如下:

1、在res/xml/檔案夾下建立AppWigdetProvider_Provider.xml檔案

複製代碼 代碼如下:<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
  android:initialLayout="@layout/main" <!-- android:initialLayout 設定引用的布局檔案 -->
  android:minHeight="50dip"
  android:minWidth="50dip"
  android:updatePeriodMillis="5000" > <!-- 設定更新時間,單位為毫秒 -->

</appwidget-provider>

2、修改MainActivity繼承自AppWidgetProvider並覆寫裡面的一些方法複製代碼 代碼如下:public class MainActivity extends AppWidgetProvider {

@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
super.onUpdate(context, appWidgetManager, appWidgetIds);
Timer timer = new Timer();
timer.scheduleAtFixedRate(new LYTimeTask(context, appWidgetManager), 1, 50000);
}

private class LYTimeTask extends TimerTask {
RemoteViews remoteViews;
AppWidgetManager appWidgetManager;
ComponentName widget;

@Override
public void run() {
Date date = new Date();
Calendar calendar = new GregorianCalendar(2013, 07, 24);
long days = (calendar.getTimeInMillis() - date.getTime()) / 1000 / 86400;
remoteViews.setTextViewText(R.id.worldcup, "距離寶貝生日" + days + "天");
appWidgetManager.updateAppWidget(widget, remoteViews);
}

public LYTimeTask(Context context, AppWidgetManager appWidgetManger) {
super();
this.appWidgetManager = appWidgetManger;
remoteViews = new RemoteViews(context.getPackageName(), R.layout.activity_main);
widget = new ComponentName(context, MainActivity.class);
}
};
}

3、為Widget建立一個顯示用的布局檔案:main.xml

複製代碼 代碼如下:<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:background="@drawable/worldcup"
  android:orientation="vertical" >
  <TextView
    android:id="@+id/babybirthday"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="@string/message"
    android:textSize="12px"
    android:textColor="#ff0000" />
</LinearLayout>

4、修改程式自動產生的資訊清單檔。在AndroidManifest.xml中,聲明上述的AppWidgetProvider的子類是一個Receiver,並且:

(1)、該Receiver的intent-filter的Action必須包含“android.appwidget.action.APPWIDGET_UPDATE”;

(2)、該Receiver的meta-data為“android.appwidget.provider”,並用一個xml檔案來描述布局屬性。

複製代碼 代碼如下: <application
  android:allowBackup="true"
  android:icon="@drawable/ic_launcher"
  android:label="@string/app_name"
  android:theme="@style/AppTheme" >
  <receiver
    android:name=".MainActivity"
    android:label="@string/app_name" >
    <intent-filter>
      <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /><!--廣播接收過濾器-->
    </intent-filter>

    <meta-data
      android:name="android.appwidget.provider"
      android:resource="@xml/AppWigdetProvider_Provider" /><!--AppWidgetProvider引用的Provider檔案-->
  </receiver>
</application>

運行程式:進入WIDGETS頁面,可將Widget添加到HOME頁

在AppWidgetProvider類中,還有其它相關的方法

複製代碼 代碼如下:
public class WidgetProvider extends AppWidgetProvider {

// 每接收一次廣播訊息就調用一次,使用頻繁
public void onReceive(Context context, Intent intent) {
super.onReceive(context, intent);
}

// 每次更新都調用一次該方法,使用頻繁
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
super.onUpdate(context, appWidgetManager, appWidgetIds);
}

// 每刪除一個就調用一次
public void onDeleted(Context context, int[] appWidgetIds) {
super.onDeleted(context, appWidgetIds);
}

// 當該Widget第一次添加到案頭是調用該方法,可添加多次但只第一次調用
public void onEnabled(Context context) {
super.onEnabled(context);
}

// 當最後一個該Widget刪除是調用該方法,注意是最後一個
public void onDisabled(Context context) {
super.onDisabled(context);
}
}

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.