- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我开发了一个应用程序,它有小部件,这些都运行良好,但我改变了设备的方向,它显示得很好。但有时当我改变方向数据不显示。任何人都可以帮助我,为什么这个问题有时会发生。 这是代码
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
super.onUpdate(context, appWidgetManager, appWidgetIds);
Logger.d(TAG, "WidgetProvider ENTER onUpdate");
String str = null;
SharedPreferences prefs = context.getSharedPreferences("userInformation", Context.MODE_PRIVATE);
if (prefs != null)
{
str = prefs.getString("ImageURL", "").toString();
}
if (str != null && str != "") {
Logger.d(TAG, "WidgetProvider (Account logined)");
for (int j = 0; j < appWidgetIds.length; j++) {
Intent intent = new Intent(context, WidgetService.class);
intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetIds[j]);
intent.setData(Uri.parse(intent.toUri(Intent.URI_INTENT_SCHEME)));
RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.facedroid_widget_layout);
remoteViews.setRemoteAdapter(appWidgetIds[j], R.id.listTasks, intent);
remoteViews.setViewVisibility(R.id.rl_complete_widget, View.GONE);
// The empty view is displayed when the collection has no items.
// It
// should be a sibling
// of the collection view.
/******** Click Listener for All external items ***********/
// Register an onClickListener
Intent clickIntent = new Intent(context, WidgetProvider.class);
clickIntent.setAction(CLICK_ACTION_FACEDROID_LOGO_BUTTON);
clickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds[j]);
PendingIntent pendingIntent_facedroid_logo = PendingIntent.getBroadcast(context, 0, clickIntent, PendingIntent.FLAG_UPDATE_CURRENT);
remoteViews.setOnClickPendingIntent(R.id.rl_topManagerBar_logo, pendingIntent_facedroid_logo);
clickIntent.setAction(CLICK_ACTION_COMMENT_BUTTON);
clickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds[j]);
PendingIntent pendingIntent_commentBtn = PendingIntent.getBroadcast(context, 0, clickIntent, PendingIntent.FLAG_UPDATE_CURRENT);
remoteViews.setOnClickPendingIntent(R.id.commentBtn, pendingIntent_commentBtn);
clickIntent.setAction(CLICK_ACTION_CAMERA_BUTTON);
clickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds[j]);
PendingIntent pendingIntent_cameraBtn = PendingIntent.getBroadcast(context, 0, clickIntent, PendingIntent.FLAG_UPDATE_CURRENT);
remoteViews.setOnClickPendingIntent(R.id.cameraBtn, pendingIntent_cameraBtn);
clickIntent.setAction(CLICK_ACTION_CHECKIN_BUTTON);
clickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds[j]);
PendingIntent pendingIntent_checkinBtn = PendingIntent.getBroadcast(context, 0, clickIntent, PendingIntent.FLAG_UPDATE_CURRENT);
remoteViews.setOnClickPendingIntent(R.id.checkinBtn, pendingIntent_checkinBtn);
clickIntent.setAction(CLICK_ACTION_REFRESH_BUTTON);
clickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds[j]);
PendingIntent pendingIntent_refreshBtn = PendingIntent.getBroadcast(context, 0, clickIntent, PendingIntent.FLAG_UPDATE_CURRENT);
remoteViews.setOnClickPendingIntent(R.id.refreshBtn, pendingIntent_refreshBtn);
/******** Click Listener for All external items ***********/
clickIntent.setAction(CLICK_ACTION_ITEM_CLICK);
clickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetIds[j]);
intent.setData(Uri.parse(intent.toUri(Intent.URI_INTENT_SCHEME)));
PendingIntent toastPendingIntent = PendingIntent.getBroadcast(context, 0, clickIntent, PendingIntent.FLAG_UPDATE_CURRENT);
remoteViews.setPendingIntentTemplate(R.id.listTasks, toastPendingIntent);
appWidgetManager.updateAppWidget(appWidgetIds[j], remoteViews);
}
} else {
Logger.d(TAG, "WidgetProvider (Account not logined)");
for (int j = 0; j < appWidgetIds.length; j++) {
RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.facedroid_widget_layout);
/******** Click Listener for All external items ***********/
// Register an onClickListener
Intent clickIntent = new Intent(context, WidgetProvider.class);
clickIntent.setAction(CLICK_ACTION_COMPLETE_WIDGET_CLICK);
clickIntent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, appWidgetIds[j]);
PendingIntent pendingIntent_widget_top_bar = PendingIntent.getBroadcast(context, 0, clickIntent, PendingIntent.FLAG_UPDATE_CURRENT);
remoteViews.setOnClickPendingIntent(R.id.rl_complete_widget, pendingIntent_widget_top_bar);
appWidgetManager.updateAppWidget(appWidgetIds[j], remoteViews);
}
}
Logger.d(TAG, "WidgetProvider EXIT onUpdate");
// super.onUpdate(context, appWidgetManager, appWidgetIds);
}
//这里是Onreceive方法的代码
@Override
public void onReceive(final Context context, Intent main_intent) {
super.onReceive(context, main_intent);
Logger.d(TAG, "WidgetProvider ENTER onReceive");
// all the intents get handled by this method
// mainly used to handle self created intents, which are not
// handled by any other method
// the super call delegates the action to the other methods
// for example the APPWIDGET_UPDATE intent arrives here first
// and the super call executes the onUpdate in this case
// so it is even possible to handle the functionality of the
// other methods here
// or if you don't call super you can overwrite the standard
// flow of intent handling
String str = null;
SharedPreferences prefs = context.getSharedPreferences("userInformation", Context.MODE_PRIVATE);
if (prefs != null) {
str = prefs.getString("ImageURL", "").toString();
}
if (str != null && str != "") {
Logger.d(TAG, "WidgetProvider (Account logined)");
if (main_intent.getAction().equals(AppWidgetManager.ACTION_APPWIDGET_UPDATE)) {
Logger.d(TAG, "WidgetProvider UpdateAction");
String updateType = main_intent.getStringExtra("updateType");
Logger.d(TAG, "updateType=" + updateType);
if (updateType != null) {
if (updateType.equals("single")) {
final int appWidgetId = main_intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, 0);
final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
updateAppWidgetSingle(context, appWidgetManager, appWidgetId);
} else if (updateType.equals("multiple")) {
final int[] appWidgetIds = (int[]) main_intent.getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS);
final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
updateAppWidgetMultiple(context, appWidgetManager, appWidgetIds);
}
}
} else if (main_intent.getAction().equals(CLICK_ACTION_ITEM_CLICK)) {
Logger.d(TAG, "WidgetProvider ItemClick");
// int appWidgetId =
// main_intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID,
// AppWidgetManager.INVALID_APPWIDGET_ID);
int viewIndex = main_intent.getIntExtra(EXTRA_ITEM, 0);
LinkInfo info_s = null;
try {
info_s = public_feed.DATA.get(viewIndex);
} catch (Exception e) {
e.printStackTrace();
if (e != null) {
Log.e(TAG, "onReceive() " + e.getMessage().toString());
} else {
Log.e(TAG, "onReceive() e=null onReceive");
}
}
if (info_s != null) {
Intent i = new Intent(context.getApplicationContext(), SinglePostActivityWidget.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
i.putExtra("LinkInfo", info_s);
context.getApplicationContext().startActivity(i);
}
} else if (main_intent.getAction().equals(CLICK_ACTION_FACEDROID_LOGO_BUTTON)) {
Logger.d(TAG, "WidgetProvider FacedroidLogoButtonClicked");
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
ComponentName component_name = new ComponentName("com.platinumapps.facedroid", "com.platinumapps.activities.Splash_Activity");
intent.setComponent(component_name);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
if (intent != null) {
context.startActivity(intent);
}
} else if (main_intent.getAction().equals(CLICK_ACTION_COMMENT_BUTTON)) {
Logger.d(TAG, "WidgetProvider CommentButtonClicked");
Intent i = new Intent(context.getApplicationContext(), StatusShareICS.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.getApplicationContext().startActivity(i);
} else if (main_intent.getAction().equals(CLICK_ACTION_CAMERA_BUTTON)) {
Logger.d(TAG, "WidgetProvider CameraButtonClicked");
Intent i = new Intent(context.getApplicationContext(), PhotoSharePopup_widget.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.getApplicationContext().startActivity(i);
} else if (main_intent.getAction().equals(CLICK_ACTION_CHECKIN_BUTTON)) {
Logger.d(TAG, "WidgetProvider CheckinButtonClicked");
Intent i = new Intent(context.getApplicationContext(), widget_place_checkin_dialog.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.getApplicationContext().startActivity(i);
} else if (main_intent.getAction().equals(CLICK_ACTION_REFRESH_BUTTON)) {
Logger.d(TAG, "WidgetProvider RefreshButtonClicked");
refresh_indicator = true;
final int appWidgetId = main_intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, AppWidgetManager.INVALID_APPWIDGET_ID);
final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
RemoteViews updateViews = new RemoteViews(context.getPackageName(), R.layout.facedroid_widget_layout);
updateViews.setViewVisibility(R.id.pb_refreshing, View.VISIBLE);
updateViews.setViewVisibility(R.id.refreshBtn, View.INVISIBLE);
appWidgetManager.updateAppWidget(appWidgetId, updateViews);
new Timer().schedule(new TimerTask() {
@Override
public void run() {
RemoteViews updateViews = new RemoteViews(context.getPackageName(), R.layout.facedroid_widget_layout);
updateViews.setViewVisibility(R.id.pb_refreshing, View.GONE);
updateViews.setViewVisibility(R.id.refreshBtn, View.VISIBLE);
appWidgetManager.updateAppWidget(appWidgetId, updateViews);
}
}, 1000 * 10);
Intent intent = new Intent(context, WidgetProvider.class);
intent.setAction(AppWidgetManager.ACTION_APPWIDGET_UPDATE);
intent.putExtra("updateType", "single");
intent.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, appWidgetId);
context.sendBroadcast(intent);
} else if (main_intent.getAction().equals(REFRESH_END)) {
Logger.d(TAG, "WidgetProvider RefreshEnd");
if (refresh_indicator) {
int appWidgetId = main_intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS, AppWidgetManager.INVALID_APPWIDGET_ID);
AppWidgetManager mgr = AppWidgetManager.getInstance(context);
RemoteViews updateViews = new RemoteViews(context.getPackageName(), R.layout.facedroid_widget_layout);
updateViews.setViewVisibility(R.id.pb_refreshing, View.GONE);
updateViews.setViewVisibility(R.id.refreshBtn, View.VISIBLE);
mgr.updateAppWidget(appWidgetId, updateViews);
refresh_indicator = false;
}
// if (WidgetService.isOrientationChanged) {
// Log.e(TAG, "WidgetService.isOrientationChanged=true");
// WidgetService.isOrientationChanged = false;
// final int appWidgetId =
// main_intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID,
// 0);
// final AppWidgetManager appWidgetManager =
// AppWidgetManager.getInstance(context);
// updateAppWidgetSingle(context, appWidgetManager,
// appWidgetId);
// } else {
// Log.e(TAG, "WidgetService.isOrientationChanged=false");
// }
}
} else {
Logger.d(TAG, "WidgetProvider (Account not logined)");
Toast.makeText(context, "Please login to facedroid", Toast.LENGTH_SHORT).show();
if (main_intent.getAction().equals(CLICK_ACTION_COMPLETE_WIDGET_CLICK)) {
Logger.d(TAG, "WidgetProvider HeaderWidgetClicked");
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
ComponentName component_name = new ComponentName("com.platinumapps.facedroid", "com.platinumapps.activities.Splash_Activity");
intent.setComponent(component_name);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
if (intent != null) {
context.startActivity(intent);
}
} else if (main_intent.getAction().equals(CLICK_ACTION_WIDGET_CONTAINER_AREA)) {
Logger.d(TAG, "WidgetProvider ContainerWidgetClicked");
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
ComponentName component_name = new ComponentName("com.platinumapps.facedroid", "com.platinumapps.activities.Splash_Activity");
intent.setComponent(component_name);
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
if (intent != null) {
context.startActivity(intent);
}
}
}
String updateType = main_intent.getStringExtra("updateType");
Logger.d(TAG, "updateType=" + updateType);
if (updateType != null) {
if (updateType.equals("single")) {
final int appWidgetId = main_intent.getIntExtra(AppWidgetManager.EXTRA_APPWIDGET_ID, 0);
final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
updateAppWidgetSingle(context, appWidgetManager, appWidgetId);
} else if (updateType.equals("multiple")) {
final int[] appWidgetIds = (int[]) main_intent.getIntArrayExtra(AppWidgetManager.EXTRA_APPWIDGET_IDS);
final AppWidgetManager appWidgetManager = AppWidgetManager.getInstance(context);
updateAppWidgetMultiple(context, appWidgetManager, appWidgetIds);
}
}
Logger.d(TAG, "WidgetProvider EXIT onReceive");
//super.onReceive(context, main_intent);
}
最佳答案
当您旋转手机时, Activity 会被破坏并重新创建。所以变量被重新初始化。这就是为什么数据不显示
的原因。你可以通过阻止 Activity onRotation 的破坏来克服这个问题。要实现这一点,请将其放入您的 list 中:
<activity android:name="FriendPickerActivity"
android:label="@string/app_name"
android:configChanges="orientation"/>
我指向 android:configChanges="orientation"
或者你可以在你的activity中使用onSaveInstanceState()
和onRestoreInstanceState()
关于android - 设备方向改变时小部件丢失数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14978873/
我在 Ubuntu 10.04 LTS 上运行 Eclipse Galileo。今天 Ubuntu 在我身上崩溃了,重新启动后,我发现 Eclipse 已经完全失去了 Java Perspective
我使用配置了 sonata_user 的 SonataAdminBundle在 config.yml : sonata_user: impersonating: route:
我有 ubuntu 14.04 但它不见了 docker exec sudo docker exec -it ubuntu_bash bash 我希望在现有正在运行的 docker 容器中运行交互式
我正在使用 Ubuntu 8.04/32 位(作为虚拟机)。在一个不是 min 的项目上执行一些 make 时,我得到了错误: g++:/usr/lib/libstdc++.a: 没有这样的文件或目录
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许在 Stack Overflow 上提出有关通用计算硬件和软件的问题。您可以编辑问题,使其成为
我正在尝试获取有关我在 UIImagePicker 中选择的视频的一些数据。 因此,当它进入 UIImagePicker 委托(delegate)方法(如下)时,我知道我需要使用信息字典中的 UIIm
我的网站最近被可能的黑客行为删除了。我上传了备份的文件夹和数据库,但现在我的 View 没有显示。其他一切都有效。我想不出有什么变化,只是上传了几天前的备份。 这些字段在 admin/build/vi
我执行以下操作来设置我的 session ,这是有效的,因为 echo 出现了。但是当我转到下一页或另一页时, session 不存在吗?我做错了什么? $session_start(); if ($
我试图在 BigQuery 中使用这段代码,显然是从 GA 中获取数据,但 _TABLE_SUFFIX 似乎有问题。错误显示“错误:无法识别的名称:_TABLE_SUFFIX at [12:3]”您能
输入:8(2 5 6 9 10 2 7 4)预期输出:(2 7 9 9 12 5 7 6)实际输出:(2 7 9 9) 这是我的大学作业,也是我第一次在这里提问。我不知道为什么,但 10 没有扫描,有
$('div'); // 我在上面的代码中遇到错误。在检查 .js 代码时,我找不到名为 $ 的函数,但根据文档,应该有一个。 最佳答案 试试 http://ajax.googleapis.co
以下简单代码的输出对我来说有点奇怪。它错过了在控制台上打印的 0 到 100 之间的一些数字。 谁能解释一下为什么省略打印?我对并发编程完全陌生。 import java.util.concurren
我正在学习 xamarin 以构建移动应用程序,但我对 Xamarin 和移动应用程序一无所知。我打开了一个空白的移动应用程序,其中有“Hello world”示例并编辑了一些文本,但我的应用程序图标
我正在将一些值存储到 sqlite 数据库中。因此,数据是作为字符串从文本字段收集的,然后转换为 double 并持久化。 这是我试过的 NSDecimalNumber 答案; value.answe
我有一个奇怪的案例。突然,其中一个表中的一些记录(这么多记录)丢失了。首先,我认为这是由我的 PHP 脚本中的错误引起的。但是,我检查了一下,我的脚本中没有DELETE操作,只有UPDATE。有谁知道
我正在复制 NSString来自 NSDictionary进入本地NSString使用 [[NSString alloc] initWithString:] ,对其进行处理(删除一些字符),然后将其发
当保存在根文件夹中时,我的非常基本的 html 页面保持样式。为一个组创建了一个新文件夹,但是当我将页面移动到该文件夹时,它们似乎失去了与 css 文件的连接。 认为问题可能出在链接上,因为它现在
我需要使用 OpenCV 训练一些图像。但问题是,我找不到 opencv_createsamples 程序。我以正常方式安装了 OpenCV,因为我使用的是 Windows 7。这个 opencv_c
我有一个绑定(bind)到 JTable 的 ArrayList。之后 bindingGroup.unbind(); bindingGroup.bind(); (完成刷新数据)我丢失了表格单元格渲
所以基本上我们只是丢失了一个 keystore 和备份 keystore 。但是我们可能知道原始 keystore 的密码。 我的问题是,如果我们知道原始 keystore 的密码,我们可以重新生成
我是一名优秀的程序员,十分优秀!