添加AppWidget功能

要为程序添加AppWidget

1 首先要建立一个继承于AppWidgetProvider的类 MyWidget

public class MyWidget extends AppWidgetProvider {

}

2 在manifest清单文件中进行注册

          <receiver android:name="com.lightyear.safe.receiver.MyWidget">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"></action>
</intent-filter>
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/appwidget" />
</receiver>

3 实现上面@xml/appwidget 的内容,在Res/xml目录中建立一个 appwidget.xml文件

 <?xml version="1.0" encoding="utf-8"?>
<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"
android:initialLayout="@layout/appwidgetlayout"
android:minHeight="72dp"
android:minWidth="294dp"
android:updatePeriodMillis="86400000" > </appwidget-provider>

4 实现上面@layout/appwidgetlayout 的内容,这是我们Appwidget的布局文件

 <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" > <TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="我是一个AppWidget"
android:background="#80ffff00"/> </LinearLayout>

大功告成~

上一篇:iOSReachability判断网络连接状态


下一篇:python3编程练习题