gpt4 book ai didi

Android 小部件按钮停止工作

转载 作者:塔克拉玛干 更新时间:2023-11-01 21:24:46 27 4
gpt4 key购买 nike

我有一个带有小部件的 Android 应用程序,它有按钮。 此代码有效。

当发生某些事情(例如更改手机语言)时,小部件上的按钮停止工作。我使用共享首选项,所以如果用户重新安装应用程序(没有卸载),按钮将再次工作并且设置保持设置。

  • 我注意到我的 AppWidgetProvider 类(此分析下方的代码)中的 Intents 未正确触发。
  • 我向从 AppWidgetProvider 实例化的 Call1 类添加了一条 Toast 消息,但它没有显示。
  • 我的 UpdateService.java 只是获取设置的首选项并自定义小部件的外观,所以我认为这可能与我的问题无关。
  • 我的 Main.java 文件仅包含微调器并保存共享首选项,这意味着我在微调器中选择“计算机”,以便“计算机”文本出现在小部件上。当我更改手机的语言时它也不会消失,图像也不会消失。因此,我相信UpdateService.java一定没问题。

这是 AppWidgetProvider 类:

public class HelloWidget extends AppWidgetProvider {

public static String ACTION_WIDGET_CONFIGURE = "ConfigureWidget";
public static String ACTION_WIDGET_CONFIGURE2 = "ConfigureWidget";
public static String ACTION_WIDGET_RECEIVER = "ActionReceiverWidget";
public static String ACTION_WIDGET_RECEIVER2 = "ActionReceiverWidget";
private static final int REQUEST_CODE_FOUR = 40;
private static final int REQUEST_CODE_FIVE = 50;
private static final int REQUEST_CODE_SIX = 60;
private static final int REQUEST_CODE_SEVEN = 70;
private static final int REQUEST_CODE_EIGHT = 80;

@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
context.startService(new Intent(context, UpdateService.class));
//Intent widgetUpdateIntent = new Intent(context, UpdateService.class);
//context.startService(widgetUpdateIntent );

RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.widgetmain2);

//P1 starts Call1.class
Intent configIntent4 = new Intent(context, Call1.class);
configIntent4.setAction(ACTION_WIDGET_CONFIGURE);
PendingIntent configPendingIntent4 = PendingIntent.getActivity(context, REQUEST_CODE_FOUR, configIntent4, 0);
remoteViews.setOnClickPendingIntent(R.id.ImageView01, configPendingIntent4);

//P2 starts Call2.class
Intent configIntent5 = new Intent(context, Call2.class);
configIntent5.setAction(ACTION_WIDGET_CONFIGURE);
PendingIntent configPendingIntent5 = PendingIntent.getActivity(context, REQUEST_CODE_FIVE, configIntent5, 0);
remoteViews.setOnClickPendingIntent(R.id.ImageView02, configPendingIntent5);

//P3 starts Call3.class
Intent configIntent6 = new Intent(context, Call3.class);
configIntent6.setAction(ACTION_WIDGET_CONFIGURE);
PendingIntent configPendingIntent6 = PendingIntent.getActivity(context, REQUEST_CODE_SIX, configIntent6, 0);
remoteViews.setOnClickPendingIntent(R.id.ImageView03, configPendingIntent6);

//P4 starts Call4.class
Intent configIntent7 = new Intent(context, Call4.class);
configIntent7.setAction(ACTION_WIDGET_CONFIGURE);
PendingIntent configPendingIntent7 = PendingIntent.getActivity(context, REQUEST_CODE_SEVEN, configIntent7, 0);
remoteViews.setOnClickPendingIntent(R.id.ImageView04, configPendingIntent7);

//P5 starts Call5.class
Intent configIntent8 = new Intent(context, Call5.class);
configIntent8.setAction(ACTION_WIDGET_CONFIGURE);
PendingIntent configPendingIntent8 = PendingIntent.getActivity(context, REQUEST_CODE_EIGHT, configIntent8, 0);
remoteViews.setOnClickPendingIntent(R.id.ImageView05, configPendingIntent8);

appWidgetManager.updateAppWidget(appWidgetIds, remoteViews);
}

@Override
public void onReceive(Context context, Intent intent) {

final String action = intent.getAction();
if (AppWidgetManager.ACTION_APPWIDGET_DELETED.equals(action))
{
final int appWidgetId = intent.getExtras().getInt(
AppWidgetManager.EXTRA_APPWIDGET_ID,AppWidgetManager.INVALID_APPWIDGET_ID);
if (appWidgetId != AppWidgetManager.INVALID_APPWIDGET_ID)
{
this.onDeleted(context, new int[] { appWidgetId });
}
}
else
{
if (intent.getAction().equals(ACTION_WIDGET_RECEIVER))
{
String msg = "null";
try {
msg = intent.getStringExtra("msg");
} catch (NullPointerException e) {
//Log.e("Error", "msg = null");
}
}
super.onReceive(context, intent);
}
}
}

我还有一个 EditPreferences.javaGlobalVars.java 和其他一些现在毫无意义的类。类的名称不言自明。

还有一点。我还有一个 Widgetmain.java:

  public class WidgetMain extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.widgetmain2);
}
static void updateAppWidget(Context context, AppWidgetManager appWidgetManager, int appWidgetId)
{
RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.widgetmain2);

appWidgetManager.updateAppWidget(appWidgetId, remoteViews);

}
}

编辑:这个怎么样:

当我在我同事的 ZTE Blade 上安装这个应用程序时,小部件上的 TextView 没有加载适当的文本,只是加载了 strings.xml 中确定的文本。

当我重新安装应用程序(没有卸载)时, TextView 被加载并且一切正常。 我的 HTC Desire HD 上没有出现这个问题。

TextView 像这样加载到上述 UpdateService.java 中(部分代码):

RemoteViews updateViews = new RemoteViews(this.getPackageName(), R.layout.main);
updateViews.setTextViewText(R.id.widget_textview, name);
ComponentName thisWidget = new ComponentName(this, HelloWidget.class);
AppWidgetManager manager = AppWidgetManager.getInstance(this);
manager.updateAppWidget(thisWidget, updateViews);

即使“name”是静态的(例如 String name="Something"),该 textview 仍然不会在第一次安装时加载。

最佳答案

每当您通过“new RemoteViews”创建新实例时,尝试使用点击监听器更新 RemoteViews。也许在某些情况下 RemoteViews 是从 XML 中重新加载的,因此需要重新分配点击监听器。

关于Android 小部件按钮停止工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6684982/

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