Android Widget開發模板

來源:互聯網
上載者:User

  Android上的Widget使用了Java語言開發比W3C的Widget運行效率提高了不少,可以做更多的事情調用系統的API,除了UI上的限制外,我們可以考慮協助系統完善一些appWidget,Android123給出大家一個開發Widget的模板。

public class cwjWidget extends AppWidgetProvider {
    @Override
    public void onUpdate(Context context, AppWidgetManager appWidgetManager,
            int[] appWidgetIds) {
                context.startService(new Intent(context, UpdateService.class)); //這裡建立一個服務,防止出現等待逾時對話方塊
    }

    public static class UpdateService extends Service {  //這個內部的服務我們推薦新開一個線程操作一些容易阻塞的情況,比如網路下載等等
        @Override
        public void onStart(Intent intent, int startId) {

            RemoteViews updateViews = buildUpdate(this);

            ComponentName thisWidget = new ComponentName(this, cwjWidget.class);
            AppWidgetManager manager = AppWidgetManager.getInstance(this);
            manager.updateAppWidget(thisWidget, updateViews);
        }

        public RemoteViews buildUpdate(Context context) {
             Resources res = context.getResources();
            RemoteViews updateViews = new RemoteViews(
                context.getPackageName(), R.layout.main);  //主Widget的layout布局

            PendingIntent pendingIntent = PendingIntent.getActivity(context,
                    0 /* no requestCode */, 
                    new Intent(android.provider.Settings.ACTION_DEVICE_INFO_SETTINGS),
                    0 /* no flags */);
            updateViews.setOnClickPendingIntent(R.id.ui, pendingIntent); //單擊view開啟intent,目標為系統資訊,就是上面的action位置

            updateViews.setTextViewText(R.id.info,    
                android.os.Build.VERSION.CODENAME + " " +
                android.os.Build.ID);   //這裡是API的擷取系統版本的方法

            updateViews.setTextViewText(R.id.changelist,
                android.os.Build.FINGERPRINT
                );
            return updateViews;
        }

        @Override
        public IBinder onBind(Intent intent) {
            return null;
        }
    }
}

 有關涉及到的 androidmanifest.xml內容

 <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android123.widget"
    android:versionCode="1"
    android:versionName="1.0">

    <uses-sdk android:minSdkVersion="3" />
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <receiver android:name=".BuildWidget" android:label="android123_cwj">
            <intent-filter>
                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
            </intent-filter>
            <meta-data android:name="android.appwidget.provider" android:resource="@xml/widget" />
        </receiver>
        <service android:name=".cwjWidget$UpdateService" />
    </application>
    
</manifest>

  androidmanifest.xml上面提到的  \res\xml\widget.xml檔案內容

<appwidget-provider xmlns:android="http://schemas.android.com/apk/res/android" android:minWidth="150dip" android:minHeight="72dip" android:updatePeriodMillis="0" android:initialLayout="@layout/widget" />

  有關 main.xml的內容為

 <?xml version="1.0" encoding="utf-8"?>
 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/ui"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:padding="6dip"
    >

    <TextView
        android:id="@+id/info"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="left"
        android:textSize="18dip"
        />

    <TextView
        android:id="@+id/changelist"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="left"
        android:layout_marginTop="4dip"
        android:textSize="9dip"
        />

</LinearLayout>

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.