Android
Widgets
Buscar..
Observaciones
SDv
Declaración Manifiesta -
Declare la clase AppWidgetProvider
en el archivo AndroidManifest.xml
su aplicación. Por ejemplo:
<receiver android:name="ExampleAppWidgetProvider" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/example_appwidget_info" />
</receiver>
Metadatos
Agregue los metadatos de AppWidgetProviderInfo en res/xml
:
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="40dp"
android:minHeight="40dp"
android:updatePeriodMillis="86400000"
android:previewImage="@drawable/preview"
android:initialLayout="@layout/example_appwidget"
android:configure="com.example.android.ExampleAppWidgetConfigure"
android:resizeMode="horizontal|vertical"
android:widgetCategory="home_screen">
</appwidget-provider>
Clase AppWidgetProvider
La devolución de llamada de AppWidgetProvider
más importante es onUpdate()
. Se llama cada vez que se agrega un appwidget.
public class ExampleAppWidgetProvider extends AppWidgetProvider {
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
final int N = appWidgetIds.length;
// Perform this loop procedure for each App Widget that belongs to this provider
for (int i=0; i<N; i++) {
int appWidgetId = appWidgetIds[i];
// Create an Intent to launch ExampleActivity
Intent intent = new Intent(context, ExampleActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
// Get the layout for the App Widget and attach an on-click listener
// to the button
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.appwidget_provider_layout);
views.setOnClickPendingIntent(R.id.button, pendingIntent);
// Tell the AppWidgetManager to perform an update on the current app widget
appWidgetManager.updateAppWidget(appWidgetId, views);
}
}
}
onAppWidgetOptionsChanged()
cuando el widget se coloca o cambia de tamaño.
onDeleted(Context, int[])
se llama cuando se elimina el widget.
Dos widgets con diferentes diseños de declaración.
- Declarar dos receptores en un archivo de manifiesto:
<receiver
android:name=".UVMateWidget"
android:label="UVMate Widget 1x1">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_1x1" />
</receiver>
<receiver
android:name=".UVMateWidget2x2"
android:label="UVMate Widget 2x2">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_2x2" />
</receiver>
- Crear dos diseños
-
@xml/widget_1x1
-
@xml/widget_2x2
-
- Declare la subclase
UVMateWidget2x2
de la claseUVMateWidget
con comportamiento extendido:
package au.com.aershov.uvmate;
import android.content.Context;
import android.widget.RemoteViews;
public class UVMateWidget2x2 extends UVMateWidget {
public RemoteViews getRemoteViews(Context context, int minWidth,
int minHeight) {
mUVMateHelper.saveWidgetSize(mContext.getString(R.string.app_ws_2x2));
return new RemoteViews(context.getPackageName(), R.layout.widget_2x2);
}
}
Crear / Integrar Widget básico utilizando Android Studio
Android Studio creará e integrará un widget básico a su aplicación en 2 pasos.
Justo en su aplicación ==> Nuevo ==> Widget ==> Widget de aplicación
.
Mostrará una pantalla como abajo y llenará los campos.
Está hecho.
Creará e integrará un widget HelloWorld básico (incluido el archivo de diseño, el archivo de metadatos, la declaración en el archivo de manifiesto, etc.) a su aplicación.