AppWidgetアプリケーション(三)---PendingIntentのgetBroadcast
次に、appWidgetがどのようにブロードキャストを通じてappWidget上の情報を更新するかを見てみましょう.AppWidgetアプリケーション(2)に基づいて、カスタムメッセージを追加し、AndriodMainfestに登録する必要があります.コードは次のとおりです.
ブロードキャストメッセージの定義:private static final String UPDATE_RECEIVE = "com.example.appWidgetUpdate";
次にAppWidgetProviderのいくつかの方法を再ロードします.
起動後の効果は図のようになります.
ボタンをクリックするとTextViewとImageViewが変わります
ソースを添付
クリックしてリンクを開く
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.appwidgetdemo"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.appwidgetdemo.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name="com.example.appwidgetdemo.appWidgetActivity" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" >
</action>
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/appwidget01" />
<!-- -->
<intent-filter>
<action android:name="com.example.appWidgetUpdate" >
</action>
</intent-filter>
</receiver>
</application>
</manifest>
ブロードキャストメッセージの定義:private static final String UPDATE_RECEIVE = "com.example.appWidgetUpdate";
次にAppWidgetProviderのいくつかの方法を再ロードします.
/**
*
*/
@Override
public void onReceive(Context context, Intent intent) {
// TODO Auto-generated method stub
String Msg = intent.getAction();
//
if (Msg.equals(UPDATE_RECEIVE)) { // :com.qlf.appWidgetUpdate
System.out.println("----------------onReceive");
// appwidget
RemoteViews remoteViews = new RemoteViews(context.getPackageName(),
R.layout.appwidgetlayout);
//
remoteViews.setTextViewText(R.id.txtapp, " -hihi");
remoteViews.setImageViewResource(R.id.image, R.drawable.local_file);
// appwidget , appwidget
AppWidgetManager appWidgetManager = AppWidgetManager
.getInstance(context);
// appwidget
ComponentName componentName = new ComponentName(context,
appWidgetActivity.class);
// appwidget
appWidgetManager.updateAppWidget(componentName, remoteViews);
}
//
else{
super.onReceive(context, intent);
}
}
/**
* AppWidget
*/
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager,
int[] appWidgetIds) {
System.out.println("----------------onUpdate");
// TODO Auto-generated method stub
// Intent
Intent intent = new Intent();
intent.setAction(UPDATE_RECEIVE);
// getActivity, broadcastReceiver
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0,
intent, 0);
RemoteViews remoteViews = new RemoteViews(context.getPackageName(),
R.layout.appwidgetlayout);
//
remoteViews.setOnClickPendingIntent(R.id.btnSend, pendingIntent);
// Appwidget
appWidgetManager.updateAppWidget(appWidgetIds, remoteViews);
}
起動後の効果は図のようになります.
ボタンをクリックするとTextViewとImageViewが変わります
ソースを添付
クリックしてリンクを開く