gpt4 book ai didi

Android appwidget 有时会将首选项更改回默认值

转载 作者:行者123 更新时间:2023-11-30 04:24:06 24 4
gpt4 key购买 nike

我在 Android 市场上发布了几个应用程序小部件,它们大部分都运行良好。但是我注意到使用共享首选项保存的首选项有时会重置为默认值。这种情况下的默认值是硬编码变量。保存在 xml 中的共享首选项与用户保存的相同。

在一个可验证的案例中,上述问题以及按钮停止响应等其他问题发生在设备重启后。我通过创建一个 BroadcastReceiver 来解决这个问题,它有一个 onReceive() 方法,该方法将由 list 中的 Intent 过滤器激活:

<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>

换句话说,BroadcastReceiver 将在重启后运行,效果很好。

然而,设备有时仍会重置首选项,我注意到这种情况发生在待机一晚左右之后。我怀疑这是因为设备(一段时间后,可能是由于处于待机状态)可能会重新启动 appwidget,然后它将再次使用默认首选项。我试图通过在 list 中添加以下内容作为 BroadcastReceiver 的一部分来解决它:

<intent-filter>
<action android:name="android.intent.action.PACKAGE_RESTARTED"/>
</intent-filter>

全文如下:

<receiver android:name=".BroadcastReceiverName">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.PACKAGE_RESTARTED"/>
</intent-filter>
</receiver>

但这似乎行不通。

我想知道可能导致此问题的原因以及如何在应用程序中检测到它并采取相应措施,即启动 BroadcastReceiver 并重新加载首选项。

为了完整起见,这里是(工作的)BroadcastReceiver 代码的一部分,我从 Service does not restart after "Clear Memory" + appWidget crashes 得到了这个想法。

public class BroadcastReceiverName extends BroadcastReceiver
{
@Override
public void onReceive(Context context, Intent intent)
{
/* stuff done here to reread shared preferences and refresh button's pending intents etc. */

SharedPreferences config=context.getSharedPreferences(ExampleWidgetConfig.PREFS_NAME, 0);
int poll=config.getInt(ExampleWidgetConfig.PREFS_UPDATE_RATE, ExampleWidgetProvider.poll);
int alert=config.getInt(ExampleWidgetConfig.PREFS_ALERT, ExampleWidgetProvider.alert);
int backg=config.getInt(ExampleWidgetConfig.PREFS_BACKG, ExampleWidgetProvider.backg);

/* change hardcoded default preferences in case they differ from saved ones */
ExampleWidgetProvider.poll=poll;
ExampleWidgetProvider.alert=alert;
ExampleWidgetProvider.backg=backg;

/* ... */
}
}

保存首选项的代码。请注意,此代码确实有效,问题不在于首选项未保存或读取不正确,而是应用程序中已更改为用户值的硬编码值正在再次更改回来(见上例)。

/* change hardcoded values to user's settings */
ExampleWidgetProvider.poll=getpoll();
ExampleWidgetProvider.alert=getalert();
ExampleWidgetProvider.backg=getbackg();

/* store user settings we will continue to use these in the app */
SharedPreferences.Editor configEditor=config.edit();
configEditor.putInt(PREFS_UPDATE_RATE, ExampleWidgetProvider.poll);
configEditor.putInt(PREFS_ALERT, ExampleWidgetProvider.alert);
configEditor.putInt(PREFS_BACKG, ExampleWidgetProvider.backg);
configEditor.commit();

所以我需要知道如何找出这些硬编码值何时重置为默认值。我可以通过每隔一小时左右读取首选项 xml 来解决这个问题,但这听起来像是一个愚蠢的解决方案。

最佳答案

如文档所述:

Parameters

key The name of the preference to retrieve. defValue Value to return if this preference does not exist.

Returns the preference value if it exists, or defValue. Throws ClassCastException if there is a preference with this name that is not an int.

如果相信文档,那么偏好根本不存在,您可以通过使您的 getInt 值与您在 xml 中的值不同来测试它,如果它返回您的 getInt 您知道偏好的值不存在。

在上述情况下,您的首选项必须被删除或首先没有正确设置,但这似乎不太可能。

您可以查看的另一件事是,您是在更新首选项时调用 commit 还是正在更新首选项。

您也可以在设置首选项时尝试使用这些模式,尝试 MODE_MULTI_PROCESS,因为广播接收器是一个单独的进程,并且可能您正在其他地方设置首选项,并尝试“MODE_WORLD_WRITEABLE” .

更新来自评论

首先,我猜代码有点困惑,因为我看不到所有内容,但你不能在此处复制整个项目,所以我将不得不接受它。

这就是我对问题的理解:你在你的偏好中设置这些值,你可以在某个时候对这些偏好调用 getInt 并且它是正确的,然后在某个事件之后(可能由待命)你再次调用 getInt 并且首选项恢复为 preference.xml 中指定的默认值,而不是调用 getInt 时传递的默认值(如此会暗示偏好不存在)。

我注意到您正在将值复制到这些 ExampleWidgetProvider.* 变量,您确定这些不是您作为首选项检索的正确值,并且首选项中存在的任何值都不会正确设置。我看不出拥有这些变量的意义,因为当您更改其中任何一个时都需要同步它们。如果它们是解决方法的一部分,那么它们应该被删除,这样它们就不会混淆原来的问题。

我相信你知道;如果您重新启动应用程序,则首选项应该与重新启动之前相同,因为首选项值会保留(假设您已正确配置它们)并且如文档中所述:

android:defaultValue The default value for the preference, which will be set either if persistence is off or persistence is on and the preference is not found in the persistent storage.

这表明首选项没有被重置为原始值,而是出于任何原因它不存在(如果是这个特定的默认值不断出现)。

存在方法 setDefaultValues(Context context, int resId, boolean readAgain=true) 但你说你没有调用它。因此,偏好似乎不太可能被重置,而是被删除或从一开始就不存在。

关于Android appwidget 有时会将首选项更改回默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8796610/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com