Android 小部件在模拟器中运行良好,但在 phone 上它变成了 Google 应用程序小部件
Android widget works well in emulator but on phone it turns into the Google App widget
我创建了一个 Android 小部件。
在 Genymotion Nexus 4 模拟器中 运行 Android 4.4.4 一切正常。
在我的 Nexus 4 设备上 运行 Android 4.4.4 我将小部件放在主屏幕上,它变成了 Google 应用程序小部件。
然后它变成我的小部件,然后又变成 Google 应用程序小部件等等。它会一直这样做,直到我从主屏幕上删除该小部件。
此外,我正在使用 parse.com 作为在线存储,而在我的 phone 上似乎没有获得数据。我真的不能确定,因为小部件一直在变化。
我的小部件包含 3 个文件。
一个扩展应用程序 class:
public class MyApp extends Application
{
private MyModel model;
@Override
public void onCreate() {
Parse.enableLocalDatastore(this);
ParseObject.registerSubclass(GdbdData.class);
Parse.initialize(this, "-", "-");
if(model == null) {
Intent intent = new Intent(this,GdbdWidgetProvider.class);
intent.setAction(WidgetUtils.WIDGET_REFRESH_STORAGE);
intent.putExtra("userId",123);
sendBroadcast(intent);
}
super.onCreate();
}
一个 WidgetProvider:
@Override
public void onReceive(Context context, Intent intent) {
super.onReceive(context, intent);
final String action = intent.getAction();
if (action.equals(WidgetUtils.WIDGET_REFRESH_STORAGE))
{
MyApp app = ((MyApp)context.getApplicationContext());
int userId = intent.getIntExtra("userId",0);
TryGetModelFromRemoteStorage(userId,context);
}
}
static void updateAppWidget(Context context, AppWidgetManager appWidgetManager, int appWidgetId)
{
MyApp app = ((MyApp)context.getApplicationContext());
MyModel model = app.getModel();
// Construct the RemoteViews object
RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.the_widget);
PendingIntent clickerPendingIntent = buildButtonPendingIntent(context);
// I change some textviews and imageviews inside the widget here
appWidgetManager.updateAppWidget(appWidgetId, remoteViews);
}
public static PendingIntent buildButtonPendingIntent(Context context) {
// initiate widget update request
Intent intent = new Intent();
intent.setAction(WidgetUtils.WIDGET_UPDATE_ACTION);
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, intent, 0);
return pendingIntent;
}
还有一个处理小部件上按钮的广播接收器:
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals(WidgetUtils.WIDGET_UPDATE_ACTION)) {
updateWidget(context);
}
}
private void updateWidget(Context context) {
MyApp app = ((MyApp)context.getApplicationContext());
MyModel model = app.getModel();
//I update some fields in the model based on some business rules at this point
MyWidgetProvider.SendUpdateMessageToWidgets(context);
}
有谁知道我做错了什么吗?
编辑 1:按要求添加清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.my.app.main" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:name="MyApp"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:name=".GdbdWidgetProvider" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_ENABLED" />
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/the_widget_info" />
</receiver>
<receiver
android:name=".TapMarkDayIntentReceiver"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.my.app.intents.UPDATE_WIDGET" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/the_widget_info" />
</receiver>
</application>
</manifest>
编辑 2,添加了小部件 xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="140dp" android:minHeight="140dp"
android:updatePeriodMillis="1000000"
android:previewImage="@drawable/example_appwidget_preview"
android:initialLayout="@layout/the_widget" android:widgetCategory="home_screen"
android:initialKeyguardLayout="@layout/the_widget"></appwidget-provider>
很抱歉没有回复最后的评论,但我真的很忙。
感谢大家的帮助。
发生的事情是我的 WidgetProvider 的 onUpdate、onEnabled、onDisabled 和 orReceive 方法中有 return 语句,显然这是一件坏事。一旦我删除它们,就不再发生这种情况。
我创建了一个 Android 小部件。
在 Genymotion Nexus 4 模拟器中 运行 Android 4.4.4 一切正常。
在我的 Nexus 4 设备上 运行 Android 4.4.4 我将小部件放在主屏幕上,它变成了 Google 应用程序小部件。
然后它变成我的小部件,然后又变成 Google 应用程序小部件等等。它会一直这样做,直到我从主屏幕上删除该小部件。
此外,我正在使用 parse.com 作为在线存储,而在我的 phone 上似乎没有获得数据。我真的不能确定,因为小部件一直在变化。
我的小部件包含 3 个文件。
一个扩展应用程序 class:
public class MyApp extends Application
{
private MyModel model;
@Override
public void onCreate() {
Parse.enableLocalDatastore(this);
ParseObject.registerSubclass(GdbdData.class);
Parse.initialize(this, "-", "-");
if(model == null) {
Intent intent = new Intent(this,GdbdWidgetProvider.class);
intent.setAction(WidgetUtils.WIDGET_REFRESH_STORAGE);
intent.putExtra("userId",123);
sendBroadcast(intent);
}
super.onCreate();
}
一个 WidgetProvider:
@Override
public void onReceive(Context context, Intent intent) {
super.onReceive(context, intent);
final String action = intent.getAction();
if (action.equals(WidgetUtils.WIDGET_REFRESH_STORAGE))
{
MyApp app = ((MyApp)context.getApplicationContext());
int userId = intent.getIntExtra("userId",0);
TryGetModelFromRemoteStorage(userId,context);
}
}
static void updateAppWidget(Context context, AppWidgetManager appWidgetManager, int appWidgetId)
{
MyApp app = ((MyApp)context.getApplicationContext());
MyModel model = app.getModel();
// Construct the RemoteViews object
RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.the_widget);
PendingIntent clickerPendingIntent = buildButtonPendingIntent(context);
// I change some textviews and imageviews inside the widget here
appWidgetManager.updateAppWidget(appWidgetId, remoteViews);
}
public static PendingIntent buildButtonPendingIntent(Context context) {
// initiate widget update request
Intent intent = new Intent();
intent.setAction(WidgetUtils.WIDGET_UPDATE_ACTION);
PendingIntent pendingIntent = PendingIntent.getBroadcast(context, 0, intent, 0);
return pendingIntent;
}
还有一个处理小部件上按钮的广播接收器:
@Override
public void onReceive(Context context, Intent intent) {
if (intent.getAction().equals(WidgetUtils.WIDGET_UPDATE_ACTION)) {
updateWidget(context);
}
}
private void updateWidget(Context context) {
MyApp app = ((MyApp)context.getApplicationContext());
MyModel model = app.getModel();
//I update some fields in the model based on some business rules at this point
MyWidgetProvider.SendUpdateMessageToWidgets(context);
}
有谁知道我做错了什么吗?
编辑 1:按要求添加清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.my.app.main" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<application
android:name="MyApp"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:name=".GdbdWidgetProvider" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_ENABLED" />
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/the_widget_info" />
</receiver>
<receiver
android:name=".TapMarkDayIntentReceiver"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.my.app.intents.UPDATE_WIDGET" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/the_widget_info" />
</receiver>
</application>
</manifest>
编辑 2,添加了小部件 xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="140dp" android:minHeight="140dp"
android:updatePeriodMillis="1000000"
android:previewImage="@drawable/example_appwidget_preview"
android:initialLayout="@layout/the_widget" android:widgetCategory="home_screen"
android:initialKeyguardLayout="@layout/the_widget"></appwidget-provider>
很抱歉没有回复最后的评论,但我真的很忙。
感谢大家的帮助。
发生的事情是我的 WidgetProvider 的 onUpdate、onEnabled、onDisabled 和 orReceive 方法中有 return 语句,显然这是一件坏事。一旦我删除它们,就不再发生这种情况。