如果单击小部件,我正在尝试打开一个活动。但是,当我将包上传到我的模拟器时,活动会自动打开,即使它只有在我单击小部件时才会打开。
这是我的清单文件。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.NewsWidget"
android:versionCode="1"
android:versionName="1.0" >
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<service android:name=".UpdateWidgetService" >
</service>
<receiver android:name="MyWidgetProvider" >
<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>
<activity
android:name="com.example.NewsWidget.MainActivity"
android:label="@string/app_name"
android:launchMode="singleInstance" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".DetailedNewsViewer"
android:label="DetailedNewsViewer" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET" />
</manifest>
我已使用此处另一个问题的详细信息(从小部件启动活动)将以下代码添加到我的小部件提供程序中。
Intent i = new Intent();
i.setClassName("com.example.NewsWidget", "com.example.NewsWidget.MainActivity");
PendingIntent myPI = PendingIntent.getService(context, 0, i, 0);
//intent to start service
// Get the layout for the App Widget
RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.widget_layout);
//attach the click listener for the service start command intent
views.setOnClickPendingIntent(R.id.update, myPI);
//define the componenet for self
ComponentName comp = new ComponentName(context.getPackageName(), MyWidgetProvider.class.getName());
//tell the manager to update all instances of the toggle widget with the click listener
mgr.updateAppWidget(comp, views);
问题是什么 ?