我從小工具類中解僱了一個活動,但活動直接打開而不使用小工具,但是我想要當我使用小工具然後打開活動但小工具沒有在那裏顯示請幫助我我從過去兩天但目前還沒有進展小工具無法正常工作
public class HomeScreen extends AppWidgetProvider {
@
Override
public void onUpdate(Context context, AppWidgetManager appWidgetManager, int[] appWidgetIds) {
final int N = appWidgetIds.length;
for (int i = 0; i < N; i++) {
int appWidgetId = appWidgetIds[i];
Intent intent = new Intent(context, MainActivity.class);
PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, intent, 0);
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget_layout);
views.setOnClickPendingIntent(R.id.btn_image, pendingIntent);
appWidgetManager.updateAppWidget(appWidgetId, views);
}
}
的AndroidManifest.xml:
<?xml version="1.0" encoding="utf-8" ?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.app.om" android:versionCode="1" android:versionName="1.0">
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="17" />
<application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme">
<activity android:name="com.app.om.MainActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<receiver android:name=".HomeScreen">
<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>
</application>
</manifest>
Widget沒有顯示在哪裏?請更新您的問題,以說明您在設備上所做的以及發生了什麼。 – 2013-04-26 10:47:09
@Dan Humble小部件沒有在沒有小部件的設備上顯示,活動已啓動。 – 2013-04-26 11:23:11