android 小部件 AndroidManifest.xml

<receiver android:name=".WidgetProvider">  
            <meta-data android:name="android.appwidget.provider"  //Android系统定义的格式,不能更改,不能打错   
                android:resource="@xml/appwidget_info"></meta-data> //引用的在res/xml下创建的文件   
            <intent-filter>           //这个是接收广播时的过滤器 Android定义的    
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE"></action>  
            </intent-filter>  
        </receiver>  

你可能感兴趣的:(android 小部件 AndroidManifest.xml)