Я новичок в приложениях для Android и, следовательно, у меня есть несколько вопросов.
Используя код ниже, я пытаюсь действовать на ImageButton. И важно помнить, что это Widget , а не Activity.
Я искал в Интернете примеры использования ImageButton в виджете и нашел очень мало информации. Однако этот рабочий пример, похоже, имеет проблемы с различными версиями Android.
Теперь код работает на старой версии (2.1-update1) Android, а не на новой версии телефона (2.3.5) или на планшете (3.2.1)
- Работает - (2.1-обновление1, Samsung 5700)
- Не работает - (2.3.5, HTC Desire HD)
- Не работает - (3.2.1, ASUS)
Кажется, что в API произошли некоторые изменения, из-за которых он перестал работать. (Мое предположение о возможности. Хотя не уверен в этом.)
LogCat из 2.1-update1
Вход:
D / AAAAAA (3408): ======= onReceive
D / AAAAAA (3408): ======= onUpdate
Похоже, что в других версиях даже функции onUpdate () и onReceive () не работают.
Мой код: (Тестовый код ... :))
Не могли бы вы взглянуть на код и объяснить это поведение.
public class A_Org_WidgetActivity extends AppWidgetProvider {
private static final String LOG_TAG = "AAAAAA";
Button btn;
TextView txt1;
ImageButton button;
boolean bIcon = true;
public static String ACTION_WIDGET_CONFIGURE = "ConfigureWidget";
public static String ACTION_WIDGET_RECEIVER = "ActionReceiverWidget";
@Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
Log.d(LOG_TAG, " ======= onUpdate");
RemoteViews remoteViews = new RemoteViews(context.getPackageName(), R.layout.hor_bott_4x3);
Intent configIntent = new Intent(context, ClickOneActivity.class);
configIntent.setAction(ACTION_WIDGET_CONFIGURE);
Intent active = new Intent(context, A_Org_WidgetActivity.class);
active.setAction(ACTION_WIDGET_RECEIVER);
active.putExtra("msg", "Message for Button 1");
PendingIntent actionPendingIntent = PendingIntent.getBroadcast(context, 0, active, 0);
PendingIntent configPendingIntent = PendingIntent.getActivity(context, 0, configIntent, 0);
remoteViews.setOnClickPendingIntent(R.id.ImageButton06, actionPendingIntent);
remoteViews.setOnClickPendingIntent(R.id.ImageButton07, configPendingIntent);
appWidgetManager.updateAppWidget(appWidgetIds, remoteViews);
}
@Override
public void onReceive(Context context, Intent intent) {
// v1.5 fix that doesn't call onDelete Action
final String action = intent.getAction();
String msg = "null";
Log.d(LOG_TAG, " ======= onReceive");
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 {
// check, if our Action was called
if (intent.getAction().equals(ACTION_WIDGET_RECEIVER)) {
try {
msg = intent.getStringExtra("msg");
Log.d(LOG_TAG, " ======= msg = null");
} catch (NullPointerException e) {
Log.d(LOG_TAG, " Error msg: " + e);
}
Toast.makeText(context, msg, Toast.LENGTH_SHORT).show();
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, intent, 0);
NotificationManager notificationManager = (NotificationManager)context.getSystemService(Context.NOTIFICATION_SERVICE);
Notification noty = new Notification(R.drawable.icon, "Button 1 clicked",
System.currentTimeMillis());
noty.setLatestEventInfo(context, "Notice", msg, contentIntent);
notificationManager.notify(1, noty);
}
super.onReceive(context, intent);
}
}
}
И ...
Мой манифест * .xml
<application android:icon="@drawable/red_circle" android:label="@string/app_name">
<receiver android:name="A_Org_WidgetActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/widget_info" />
</receiver>
<!--
<action android:name="com.widget.bla-bla.A_Org_WidgetActivity.ACTION_WIDGET_RECEIVER" />
-->
<!-- Service to perform web API queries -->
<service android:name="A_Org_WidgetActivity$UpdateService" />
<!-- this activity will be called, when we fire our self created ACTION_WIDGET_CONFIGURE -->
<activity android:name="CommonActivity">
<intent-filter>
<action android:name="com.widget.bla-bla.A_Org_WidgetActivity.ACTION_WIDGET_CONFIGURE" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="7"/>