gpt4 book ai didi

Android setTextViewText 不工作

转载 作者:行者123 更新时间:2023-11-29 21:41:27 24 4
gpt4 key购买 nike

好的,我有一个 android 小部件,但我一直在更新 android 小部件时遇到问题。我使用了一些简单的硬编码 setTextViewText 但是当我调试应用程序时没有任何反应..

我的代码:

public class Widget extends AppWidgetProvider {

RemoteViews views;

@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
int N = appWidgetIds.length;
views = new RemoteViews(context.getPackageName(), R.layout.widget);
for (int i = 0; i < N; i++) {
int appWidgetId = appWidgetIds[i];
String alarm = Settings.System.getString(context.getContentResolver(),
Settings.System.NEXT_ALARM_FORMATTED);
views.setTextViewText(R.id.tvAlarm, alarm);

views.setTextViewText(R.id.tvNextAlarm, "qwertyuiop");

appWidgetManager.updateAppWidget(appWidgetId, views);
}
}

我知道一些代码是错误的,比如闹钟,我正在尝试以某种方式合并电池状态,但我被告知 BroadcastReceiver 不是前进的方向,所以在我将其注释掉的那一刻。

但主要问题是更新小部件以更改 TextView 不起作用...

最佳答案

我刚刚在我的一个小部件中尝试了这段代码,它运行良好:

@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {

// Get ids of all the instances of the widget
ComponentName widget = new ComponentName(context, MediaWidgerProvider.class);
int[] widgetIds = appWidgetManager.getAppWidgetIds(widget);

for (int widgetId : widgetIds) {

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

remoteViews.setTextViewText(R.id.widget_text, "Hello");

appWidgetManager.updateAppWidget(widgetId, remoteViews);
}
}

关于Android setTextViewText 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16981355/

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