Android 학습 의 AppWidget 고급 효과

8189 단어 AndroidAppWidget
이 어 4.567915.오늘 은'진급 판'의 작은 예 로 자신의 학습 효 과 를 검증 하 는 데 사용 된다.그래서 주사 위 를 던 지 는 위 젯 을 만 들 었 어 요.
여러분 의 관람 을 편리 하 게 하려 면 먼저 아래 와 같이 캡 처 하 세 요.
目录结构  
这里写图片描述  
这里写图片描述
주의해 야 할 것 은 drawable 폴 더 아래 에 몇 장의 그림 이 있 는데 저 는 인터넷 에서 다운로드 한 다른 사람의 소재 입 니 다.
다음은 우리 의 학습 여행 을 시작 합 시다.
첫 번 째 단계:
res/디 렉 터 리 아래 xml 라 는 폴 더 를 만 드 는 것 입 니 다.info.xml 파일 의 역할 은 시스템 에 설명 하 는 것 입 니 다.

<appwidget-provider
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:minHeight="72dp"
  android:minWidth="294dp"
  android:updatePeriodMillis="86400000"
  android:initialLayout="@layout/app_widget_layout"
  >
</appwidget-provider>

 두 번 째 단계:
레이아웃 인 터 페 이 스 를 설정 합 니 다.제 설정 은 다음 과 같 습 니 다 appwidget_layout.xml 파일:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:orientation="vertical" >

  <ImageView 
    android:id="@+id/imageview_widget"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/ic_launcher"
    />
  <Button 
    android:id="@+id/button_widget"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:text="   "
    android:textColor="#6663c6"
    />


</LinearLayout>

 
세 번 째 단계:
아래 WidgetProvider.java 와 같은 다음 논 리 를 수행 하기 위해 widget 을 지탱 하 는 클래스 를 만 듭 니 다.

package com.summer.mywidget;

import android.app.PendingIntent;
import android.appwidget.AppWidgetManager;
import android.appwidget.AppWidgetProvider;
import android.content.ComponentName;
import android.content.Context;
import android.content.Intent;
import android.util.Log;
import android.widget.RemoteViews;

public class WidgetProvider extends AppWidgetProvider{

  private static final String MY_UPDATE_ACTION="com.summer.APP_WIDGET_ACTION";

  /*
  *          int ,            
  */
  private static int getRandomPicture(){
    int[] pictureArray=new int[]{R.drawable.dice_1,R.drawable.dice_2,R.drawable.dice_3,
        R.drawable.dice_4,R.drawable.dice_5,R.drawable.dice_6};
    int RandomNumber=(int) ((Math.random()*100)%6);

    return pictureArray[RandomNumber];
  }

  /*
  *    action,         ACTION   action     
  */
  @Override
  public void onReceive(Context context, Intent intent) {
    // TODO Auto-generated method stub
    String RESPONSEACTION=intent.getAction();
    Log.i("Summer", "------------->>>>>>>>>>>>>>>>>>>>>>>>>>>>>"+RESPONSEACTION);

    if(MY_UPDATE_ACTION.equals(RESPONSEACTION)){
      RemoteViews remoteViews=new RemoteViews(context.getPackageName(),R.layout.app_widget_layout);

      remoteViews.setImageViewResource(R.id.imageview_widget,getRandomPicture());

      AppWidgetManager appWidgetManager=AppWidgetManager.getInstance(context);
      ComponentName componentName=new ComponentName(context,WidgetProvider.class);
      appWidgetManager.updateAppWidget(componentName, remoteViews);
    }else{
      super.onReceive(context, intent);
    }
  }

  /*
  *                         Widget   
  */
  @Override
  public void onUpdate(Context context, AppWidgetManager appWidgetManager,
      int[] appWidgetIds) {
    // TODO Auto-generated method stub

    for(int i=0;i<appWidgetIds.length;i++){
      Intent intent=new Intent();
      intent.setAction(MY_UPDATE_ACTION);
      PendingIntent pendingIntent=PendingIntent.getBroadcast(context, -1, intent, 0);

      RemoteViews remoteViews=new RemoteViews(context.getPackageName(),R.layout.app_widget_layout);
      remoteViews.setOnClickPendingIntent(R.id.button_widget,pendingIntent);
      appWidgetManager.updateAppWidget(appWidgetIds[i], remoteViews);
    }
    super.onUpdate(context, appWidgetManager, appWidgetIds);
  }

  @Override
  public void onDeleted(Context context, int[] appWidgetIds) {
    // TODO Auto-generated method stub
    super.onDeleted(context, appWidgetIds);
    System.out.println("my app widget ----------------------------->>>>>>>onDeleted");
  }


  @Override
  public void onEnabled(Context context) {
    // TODO Auto-generated method stub
    System.out.println("my app widget ----------------------------->>>>>>>onEnabled");
    super.onEnabled(context);
  }

  @Override
  public void onDisabled(Context context) {
    // TODO Auto-generated method stub
    System.out.println("my app widget ----------------------------->>>>>>>onDisabled");
    super.onDisabled(context);
  }


}

 네 번 째 단계:
목록 파일 Manifest.xml 파일 에서 관련 항목 을 설명 합 니 다.상세 한 내용 은 다음 과 같다.

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="com.summer.mywidget"
  android:versionCode="1"
  android:versionName="1.0" >

  <uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="18" />

  <application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
      android:name="com.summer.mywidget.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.summer.mywidget.WidgetProvider">
      <intent-filter >
        <action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
      </intent-filter>
      <intent-filter >
        <action android:name="com.summer.APP_WIDGET_ACTION"></action>
      </intent-filter>
      <meta-data
        android:name="android.appwidget.provider"
        android:resource="@xml/appwidget_info">
      </meta-data>
    </receiver>
  </application>

</manifest>

 다섯 번 째 단계:
큰 성 과 를 거 두 었 습 니 다.코드 를 실행 하고 수 동 으로 app 을 진행 합 니 다.Widget 을 추가 하면'주사위'를 가 질 수 있 습 니 다.
요약:
이 작은 절 차 는 비록 실현 되 었 다 고 말 하지만,여전히 비교적 복잡 하 지 는 않다.방송 소식 등 지식 에 대해 어느 정도 알 아야 한다.
개선 방향:클릭 이벤트 가 완 료 될 때마다 애니메이션 효 과 를 추가 하여 더 좋 은 사용자 체험 을 얻 을 수 있 습 니 다.(RemoteViews 와 관련 된 방법 을 빌려 야 합 니 다.
코드 에서 불가피 하 게 약간의 오류 와 부족 한 점 이 발생 할 수 있 습 니 다.많은 블 로 거들 이 본 후에 지적 해 주 기 를 바 랍 니 다.당신들 과 함께 발전 할 수 있 기 를 바 랍 니 다!

좋은 웹페이지 즐겨찾기