1、需要在清單檔案中配置元資料:
2、配置當前元資料要配置的xml檔案;
res/xml 自建xml檔案 下的.xml檔案。
3、需要配置乙個廣播接收者;
4.實現乙個桌面小部件的xml;
li:""
android:initiallayout=
//元資料中的初始化layout。 需要注意的是請看下面:初始
android:minheight=
"40dp"
//最小高度 化的layout
android:minwidth=
"200dp"
//注意這個最小寬度不能過大,如大於螢幕寬度不會消失的。
android:updateperiodmillis=
"0">
>
demo:
intent-filter>
receiver>
初始化的layout:就是metadata中的 initiallayout:
<?xml version="1.0" encoding="utf-8"?>
xmlns:android=""
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
android:background="#f00"
android:layout_width="match_parent"
-- 當寬度設定為matchparent時顯示的是metadata中的最小寬度 -->
android:layout_height="wrap_content"
android:text="你好啊"
android:textcolor="@android:color/black"/>
linearlayout>
桌面小部件開發
開發步驟 1.在res layout 下新建乙個xml檔案,命令為widget.xml,名稱和內容可以自定義 xml version 1.0 encoding utf 8 linearlayout xmlns android android layout width match parent and...
桌面小部件開發
開發步驟 1.在res layout 下新建乙個xml檔案,命令為widget.xml,名稱和內容可以自定義 xml version 1.0 encoding utf 8 linearlayout xmlns android android layout width match parent and...
widget 移除底部小部件內容
今天有乙個要求,就是在調出手機視窗小部件的時候,讓其中的某些小部件不顯示。折騰了好久,雖然不知道原理,最終還是實現了遮蔽其中個別小部件的方法。記錄下來 要想遮蔽底部小部件的顯示,只需要把相關的類跟廣播在manifest中的宣告注釋掉就行了。在activity中注釋掉 action android n...