我已经在stackoverflow上阅读了这个thread和其他一些内容,但我的问题似乎还没有解决。
以下是我的代码片段:(清单file.xml)
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.eightbitcloud.example.widget"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="11" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name" >
<activity
android:name=".WidgetExampleActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<action android:name="com.eightbitcloud.example.widget.ACTION_WIDGET_CONFIGURE" />
</intent-filter>
</activity>
<receiver
android:name=".ExampleAppWidgetProvider"
android:label="@string/widget1name" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
<action android:name="com.eightbitcloud.example.widget.ACTION_WIDGET_RECEIVER" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget1_info" />
</receiver>
</application>
</manifest>
以及:MainActivity.java作为WidgetExampleActivity.java
public class WidgetExampleActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
sendBroadcast(new Intent(Intent.ACTION_MAIN).addCategory(Intent.CATEGORY_HOME));
setContentView(R.layout.main);
}
}
和/res/xml/widget_info.xml
<?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:minWidth="294dp"
android:minHeight="72dp"
android:updatePeriodMillis="10000"
android:initialLayout="@layout/widget1"
>
</appwidget-provider>
问题是小部件出现在Android版本&lt; = 4.1但它没有出现在我的android&gt; = 4.2上。我知道这个,因为我在不同的设备上测试了它。请问,我该如何解决这个问题。
答案 0 :(得分:0)
你有点瞄准api等级11的Android操作系统的上限...设置为19以获得4.x的其他Android操作系统目标