AppWidget 응용(3)---PendingIntent의 getBroadcast

4005 단어 androidappwidget
다음은 appWidget이 어떻게 방송을 통해 appWidget의 정보를 업데이트하는지 살펴보겠습니다. AppWidget 응용 프로그램(二)을 바탕으로 사용자 정의 정보를 추가하고AndriodMainfest에 등록해야 합니다.코드는 다음과 같다.
<?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가 바뀌었어요.
원본을 그대로 첨부하다
클릭하여 링크 열기

좋은 웹페이지 즐겨찾기