編輯:高級開發
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>
據報道 Google 准備在 4 月發布下一個 android 系統的重要版本,優派(VIEwSonic)將率先發布采用這個新版本系統 android 2.4 的設備。
android應用程序是由Java語言開發的也只能用Java語言開發,Google對android采用了一種全面霸權式的管理,完全不是其他開源軟件的開發方式,一切都由G
盡管蘋果聯合創始人承認:android將取得最終勝利,不過很多人認為過於開放的環境依然不利於android,無差異的應用體驗正在制約Android超過iPhone。日前
全球為數眾多的移動電話用戶從未使用過任何基於android JDK 日志框架,谷歌的目標是讓不依賴於設備甚至平台,希望大家看完本文能給大家帶來相關幫助。日志記錄對於軟件