如果单击小部件,我正在尝试打开活动。但是,当我将软件包上传到我的模拟器中时,活动会自动打开,即使它只在我点击小部件时才会打开。
这是我的清单文件。
<?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>
我已使用此处其他问题的详细信息(Launching activity from widget)将以下代码添加到我的窗口小部件提供程序中。
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);
有什么问题?
答案 0 :(得分:1)
我注意到您正在使用PendingIntent.getService()
但是您正在使用活动而不是服务(根据您的清单)。请尝试使用PendingIntent.getActivity()
,然后查看您的pendingIntent是否会触发。
当您从eclipse运行时,您的主要活动正在加载,但 edthethird 是正确的,这可能与您的问题无关。这只是启动主要活动的默认日食行为。