Android研究-開發Android Widget基礎

來源:互聯網
上載者:User

引用地址:http://mobile.51cto.com/widget-290079.htm

 

ndroid Widget開發案例實現是本文要介紹的內容,主要是來瞭解並學習Android Widget開發應用,今天我們要寫一下Android Widget開發,由於快點淩晨,我就不說的太具體了,同志們就模仿吧!首先看一下:

 
下面是Demo的詳細步驟:

一、建立一個Android工程命名為:WidgetDemo.

二、準備素材,一個是Widget的表徵圖,一個是Widget的背景。存放目錄如:

三、修改string.xml檔案如下:

  1. <?xml version="1.0" encoding="utf-8"?>    
  2. <resources>    
  3.     <string name="hello">Hello World, WidetDemo!</string>    
  4.     <string name="app_name">DaysToWorldCup</string>    
  5. </resources>   

四、建立Widget內容提供者檔案,我們在res下建立xml檔案夾,並且建立一個widget_provider.xml代碼入下:

  1. <?xml version="1.0" encoding="utf-8"?>    
  2. <appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android"    
  3.     android:minWidth="50dip"    
  4.     android:minHeight="50dip"    
  5.     android:updatePeriodMillis="10000"    
  6.     android:initialLayout="@layout/main"    
  7. />    

五、修改main.xml布局,代碼如下:

  1. <?xml version="1.0" encoding="utf-8"?>    
  2. <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    
  3.     android:orientation="vertical"    
  4.     android:layout_width="fill_parent"    
  5.     android:layout_height="fill_parent"    
  6.     android:background="@drawable/wordcup"    
  7.     >    
  8. <TextView      
  9.     android:id="@+id/wordcup"    
  10.     android:layout_width="fill_parent"     
  11.     android:layout_height="wrap_content"     
  12.     android:text="@string/hello"    
  13.     android:textSize="12px"    
  14.     android:textColor="#ff0000"    
  15.     />    
  16. </LinearLayout>   

六、修改WidgetDemo.java代碼如下:

  1. package com.android.tutor;    
  2. import java.util.Calendar;    
  3. import java.util.Date;    
  4. import java.util.GregorianCalendar;    
  5. import java.util.Timer;    
  6. import java.util.TimerTask;    
  7. import android.appwidget.AppWidgetManager;    
  8. import android.appwidget.AppWidgetProvider;    
  9. import android.content.ComponentName;    
  10. import android.content.Context;    
  11. import android.widget.RemoteViews;    
  12. public class WidetDemo extends AppWidgetProvider {    
  13.     /** Called when the activity is first created. */    
  14.       
  15.     @Override    
  16.     public void onUpdate(Context context, AppWidgetManager appWidgetManager,    
  17.             int[] appWidgetIds) {    
  18.             
  19.         Timer timer = new Timer();    
  20.         timer.scheduleAtFixedRate(new MyTime(context,appWidgetManager), 1, 60000);    
  21.         super.onUpdate(context, appWidgetManager, appWidgetIds);    
  22.     }    
  23.         
  24.     private class MyTime extends TimerTask{    
  25.         RemoteViews remoteViews;    
  26.         AppWidgetManager appWidgetManager;    
  27.         ComponentName thisWidget;    
  28.             
  29.         public MyTime(Context context,AppWidgetManager appWidgetManager){    
  30.             this.appWidgetManager = appWidgetManager;    
  31.             remoteViews = new RemoteViews(context.getPackageName(),R.layout.main);    
  32.                 
  33.             thisWidget = new ComponentName(context,WidetDemo.class);    
  34.         }    
  35.         public void run() {    
  36.                 
  37.             Date date = new Date();    
  38.             Calendar calendar = new GregorianCalendar(2010,06,11);    
  39.             long days = (((calendar.getTimeInMillis()-date.getTime())/1000))/86400;    
  40.             remoteViews.setTextViewText(R.id.wordcup, "距離南非世界盃還有" + days+"天");    
  41.             appWidgetManager.updateAppWidget(thisWidget, remoteViews);    
  42.                 
  43.         }    
  44.     }    
  45. }   

七、修改設定檔AndroidManifest.xml,代碼如下:

  1. <?xml version="1.0" encoding="utf-8"?>    
  2. <manifest xmlns:android="http://schemas.android.com/apk/res/android"    
  3.       package="com.android.tutor"    
  4.       android:versionCode="1"    
  5.       android:versionName="1.0">    
  6.     <application android:icon="@drawable/icon" android:label="@string/app_name">    
  7.         <receiver android:name=".WidetDemo"    
  8.                   android:label="@string/app_name">    
  9.             <intent-filter>    
  10.                 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />    
  11.             </intent-filter>    
  12.             <meta-data android:name="android.appwidget.provider"    
  13.                        android:resource="@xml/widget_provider"    
  14.             />    
  15.         </receiver>    
  16.     </application>    
  17.     <uses-sdk android:minSdkVersion="7" />    
  18. </manifest>    

八、點擊運行(Ctrl+F11),之,運行成功後,我們長時間點擊案頭,會出現如下倆個,依次點擊,就可以看到最上面的:

 

小結:解析Android Widget開發案例實現的內容介紹完了,希望通過Android Widget開發內容的學習能對你有所協助!

 

本文完。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.