Android 학습 의 AppWidget 고급 효과
여러분 의 관람 을 편리 하 게 하려 면 먼저 아래 와 같이 캡 처 하 세 요.
주의해 야 할 것 은 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 와 관련 된 방법 을 빌려 야 합 니 다.
코드 에서 불가피 하 게 약간의 오류 와 부족 한 점 이 발생 할 수 있 습 니 다.많은 블 로 거들 이 본 후에 지적 해 주 기 를 바 랍 니 다.당신들 과 함께 발전 할 수 있 기 를 바 랍 니 다!
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Bitrise에서 배포 어플리케이션 설정 테스트하기이 글은 Bitrise 광고 달력의 23일째 글입니다. 자체 또는 당사 등에서 Bitrise 구축 서비스를 사용합니다. 그나저나 며칠 전 Bitrise User Group Meetup #3에서 아래 슬라이드를 발표했...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.