AppWidget 응용(3)---PendingIntent의 getBroadcast
<?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 UPDATERECEIVE = "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가 바뀌었어요.
원본을 그대로 첨부하다
클릭하여 링크 열기
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.