1

構成可能な時計ウィジェットに奇妙な問題があり、デバッグできません:(これは私の最初のウィジェットであり、簡単なものです;)、これは背景の構成可能な時計ウィジェットです。ユーザーがウィジェットを選択すると、構成アクティビティが開始されます。このアクティビティでは、ユーザーは時計のウィジェットの背景を選択できます。ユーザーが構成を完了すると、ユーザーの背景を持つ「標準時計ウィジェット」がランチャーの画面に表示され、それだけです。私はそれを徹底的にテストし、それまではうまくいくようです...私が抱えている問題は、時々、画面の電源を入れてロックを解除すると、ウィジェットが「なくなって」しまい、恐ろしい「Widgetの読み込みの問題」エラーが表示された灰色のボックス:(したがって、再現可能なシナリオを取得できないというエラーが発生しました。おそらくライフサイクルウィジェットメソッドのエラーに関連していますか? エラーが表示されたとき、logcat に問題は見られないので、完全に迷ってしまいます。

これは、このウィジェットの簡単なコードです: (GB 2.3.3)。重要ではないビットを取り出しました。

1.- ウィジェット プロバイダー 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.- ウィジェット レイアウト いくつかのウィジェット レイアウトがあります。ユーザーは構成アクティビティから 1 つを選択します。

<?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.- ウィジェット プロバイダー (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();
}   
}
4

1 に答える 1