我的可配置时钟小部件有一个奇怪的问题我无法调试:( 这是我的第一个Widget,它很简单;),它是一个后台可配置的时钟小部件。 当用户选择窗口小部件时,将启动配置活动。在此活动中,用户可以选择时钟的小部件背景。当用户完成配置时,启动器屏幕上会出现一个带有用户背景的“标准时钟小部件”,这就是全部。 我彻底测试了它似乎工作正常直到...... 我得到的问题是,当我打开并解锁屏幕时,我的小部件“消失了”,我有一个带有可怕的“问题加载小工具”错误的灰色框:( 所以,我有一个错误,我无法获得一个可重现的场景,也许生命周期小部件方法错误相关? 当错误出现时,我发现logcat没有问题所以我完全迷失了。
这是此小部件的简单代码:(GB 2.3.3)。我没有拿出重要的东西。
1.- Widget Provider xml
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minHeight="190dp"
android:minWidth="170dp"
android:configure="......"
android:initialLayout="@drawable/......"
android:updatePeriodMillis="30000" >
</appwidget-provider>
2.- AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="........"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="10" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="........"
android:label="@string/app_name"
android:screenOrientation="portrait" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<receiver android:name="........." >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/........" />
</receiver>
</application>
</manifest>
3.-小部件布局 我有几个小部件布局。用户从配置活动中选择一个 所有布局几乎完全相同,只需稍作修改(ImageView drawable):
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout01"
android:layout_width="160dp"
android:layout_height="200dp"
android:orientation="vertical" >
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/...." />
<AnalogClock
android:layout_width="wrap_content"
android:layout_height="138dp"
android:layout_gravity="bottom"
android:dial="@drawable/...."
android:hand_hour="@drawable/...."
android:hand_minute="@drawable/...." />
</FrameLayout>
4.- Widget Provider(Java)
public class ClockProvider extends AppWidgetProvider {
public static int anoEscudo;
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
super.onUpdate(context, appWidgetManager, appWidgetIds);
RemoteViews remoteView = null;
for (int appWidgetId : appWidgetIds) {
// Actualizamos la variable para luego poder modificar el fondo
switch (anoEscudo) {
case (...):
remoteView = new RemoteViews(context.getPackageName(), R.layout....);
break;
...
}
appWidgetManager.updateAppWidget(appWidgetId, remoteView);
}
}
}
5.-配置活动(Java)
package ...;
public class ConfigurationActivity extends Activity {
private int appWidgetId;
ImageView escudo;
TextView descripcion;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// get the appWidgetId of the appWidget being configured
Intent launchIntent = getIntent();
Bundle extras = launchIntent.getExtras();
appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID, AppWidgetManager.INVALID_APPWIDGET_ID);
// set the result for cancel first
// if the user cancels, then the appWidget
// should not appear
Intent cancelResultValue = new Intent();
cancelResultValue.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
setResult(RESULT_CANCELED, cancelResultValue);
// show the user interface of configuration
setContentView(R.layout.activity_configuration);
// Setting configuration Activity graphical elements
// ..
}
//Changing the Widget configuration
private void ... (View view) {
switch (escudoSeleccionado) {
case 1:
ClockProvider.anoEscudo = ...;
break;
...
}
}
// Finish the configuration Activity
public void ... (View view) {
Intent resultValue = new Intent();
resultValue.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
setResult(RESULT_OK, resultValue);
new ClockProvider().onUpdate(this, AppWidgetManager.getInstance(this), new int[] { appWidgetId });
finish();
}
}
答案 0 :(得分:0)
updatePeriodMillis属性定义了App Widget框架通过调用onUpdate()回调方法从AppWidgetProvider请求更新的频率。实际更新不能保证准确地按时发生,我们建议尽可能不经常更新 - 也许每小时不超过一次以节省电池。您可能还允许用户调整配置中的频率 - 有些人可能希望股票代码每15分钟更新一次,或者一天只能更新四次。
如果不是这种情况我建议查看以下参考文献