码迷,mamicode.com
首页 > 移动开发 > 详细

2.App Components-App Widgets

时间:2014-10-31 20:28:09      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:des   android   style   blog   io   color   os   ar   for   

1. App Widgets

  App Widgets are miniature application views that can be embedded in other applications (such as the Home screen) and receive periodic

    updates. These views are referred to as Widgets in the user interface, and you can publish one with an App Widget provider. An

    application component that is able to hold other App Widgets is called an App Widget host. The screenshot below shows the Music

    App Widget.

    bubuko.com,布布扣

2. The Basics

  To create an App Widgets, you need the following:

  <1> AppWidgetProviderInfo object

    Describes the metadata for an App Widget, such as the App Widget‘s layout, update frequency, and the AppWidgetProvider class.

      This should be defined in XML

  <2> AppWidgetProvider class implementation

    Defines the basic methods that allow you to programmatically interface with the App Widget, based on broadcast events. Through it,

      you will receive broadcasts when the App Widget is updated, enabled, disabled and deleted

  <3> View Layout

    Defines the initial layout for the App Widget, defined in XML.

 

3. Declaring an App Widget in the Manifest

<receiver android:name="ExampleAppWidgetProvider" > //specifies the AppWidgetProvider used by the App Widget
    <intent-filter>
        <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />  //specifies that the AppWidgetProvider accepts the
                                             //ACTION_APPWIDGET_UPDATE broadcast
</intent-filter> <meta-data android:name="android.appwidget.provider" //specifies the metadata name android:resource="@xml/example_appwidget_info" /> //specifies the AppWidgetProviderInfo resource location </receiver>

 

2.App Components-App Widgets

标签:des   android   style   blog   io   color   os   ar   for   

原文地址:http://www.cnblogs.com/iMirror/p/4065813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!