Mastering Android Widget Development - Part2
In Mastering Android Widget Development - Part1 we have gone trough the basics of appwidgets. Now we start to develop the example application, which couts time left to a given date.
First implement the configuration activity. It will contain a DatePicker, an OK button and a Cancel button, defined in the configuration.xml layout:
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.c
om/apk/res/android" - android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="vertical">
- <DatePicker android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/DatePicker">
- </DatePicker>
- <LinearLayout
- android:id="@+id/LinearLayout01"
; - android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:orientation="horizontal">
- <Button android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:id="@+id/okbutton"
- android:text="OK"></Button>
- <Button android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:text="Cancel"
- android:id="@+id/cancelbutton"></Button>
- </LinearLayout>
- </LinearLayout>
We store the choosen date in SharedPreferences, if OK is pressed, and cancel widget creation on cancel button.
The code below shows the configuration activity with comments.
- package com.helloandroid.countdownexam
ple; - import java.util.Date;
- import android.app.Activity;
- import android.appwidget.AppWidgetMan
ager; - import android.content.Context;
- import android.content.Intent;
- import android.content.SharedPreferen
ces; - import android.os.Bundle;
- import android.view.View;
- import android.view.View.OnClickListe
ner; - import android.widget.Button;
- import android.widget.DatePicker;
- public class CountdownConfiguration extends Activity {
- private int appWidgetId;
- @Override
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- // get the appWidgetId of the appWidget being configured
- Intent launchIntent = getIntent();
- Bundle extras = launchIntent.getExtras();
- appWidgetId = extras.getInt(AppWidgetManager.EXTRA_APPWIDGET_ID,
- AppWidgetManager.INVALID_APPWIDGET_ID);
- // set the result for cancel first
- // if the user cancels, then the appWidget
- // should not appear
- Intent cancelResultValue = new Intent();
- cancelResultValue.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID,
- appWidgetId);
- setResult(RESULT_CANCELED, cancelResultValue);
- // show the user interface of configuration
- setContentView(R.layout.configuration);
- // the OK button
- ok.setOnClickListener(new OnClickListener() {
- @Override
- // get the date from DatePicker
- DatePicker dp = (DatePicker) findViewById(R.id.DatePicker);
- .getMonth(), dp.getDayOfMonth());
- // save the goal date in SharedPreferences
- // we can only store simple types only like long
- // if multiple widget instances are placed
- // each can have own goal date
- // so store it under a name that contains appWidgetId
- SharedPreferences prefs = self.getSharedPreferences("prefs", 0);
- SharedPreferences.Editor edit = prefs.edit();
- edit.putLong("goal" + appWidgetId, date.getTime());
- edit.commit();
- // change the result to OK
- Intent resultValue = new Intent();
- resultValue.putExtra(AppWidgetManager.EXTRA_APPWIDGET_ID,
- appWidgetId);
- setResult(RESULT_OK, resultValue);
- // finish closes activity
- // and sends the OK result
- // the widget will be be placed on the home screen
- finish();
- }
- });
- // cancel button
- cancel.setOnClickListener(new OnClickListener() {
- @Override
- // finish sends the already configured cancel result
- // and closes activity
- finish();
- }
- });
- }
- }
We must also register the activity in the AndroidManifest.xml:
- <activity
- android:name="CountdownConfiguration&q
uot; - android:label="@string/app_name">
- <intent-filter>
- <action
- android:name="android.appwidget.action
.APPWIDGET_CONFIGURE" /> - </intent-filter>
- </activity>
Now, lets place something on the appWidget itself to be wisible.
We crate a layout for this named countdownwidget.xml:
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout
- xmlns:android="http://schemas.android.c
om/apk/res/android" - android:layout_width="wrap_content"
- android:layout_height="wrap_content" android:orientation="vertical">
- <TextView android:id="@+id/TextView01" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello!"></TextView>
- </LinearLayout>
And for last today we show this layout on the widget with the code below in the CountdownWidget class onUpdate method.
It loops trough all of the given appwidgetIds and sets up the layout for each.
- for (int appWidgetId : appWidgetIds) {
- RemoteViews remoteView = new RemoteViews(context.getPackageName(),
- R.layout.countdownwidget);
- appWidgetManager.updateAppWidget(appWidgetId, remoteView);
- }
- super.onUpdate(context, appWidgetManager, appWidgetIds);
To be continued...
New tutorials from Helloandroid
Recent Apps
Android on Twitter
-
@lendzEra (ledz motin)
BaconReader gets major update, adds Android Beam support, scrollable widget and more http://t.co/aTXFOvQb #android
5 min 21 sec ago -
@grenhall (Mattias Grenhall)RT @iphonecruncher2012HP finally caves and offers up TouchPad Kernel Source http://t.co/HwddIG75 #android #googleandroid #android #apps
5 min 24 sec ago -
@lendzEra (ledz motin)
Sony Tablet P started life as a wallet, almost ran Windows http://t.co/qgi6Nrrs #android
5 min 24 sec ago -
@onebadcarr2 (chris)I've just received an achievement: Quick https://t.co/GfeDIsJo #Android #Androidgames
5 min 25 sec ago -
@darren3131 (darren)I've just received an achievement: Logistician https://t.co/Dn9r87yG #Android #Androidgames
5 min 27 sec ago
Poll
Useful resources
Android Development Projects
- Android App wanted immediately by JoePublic
- LIST DATA PROJ by nhammoud
- Nonpublic project #1433932 by subpariq
- Alarm Android Application Design by globalheed
- Simple Album App for Android by ayfonfan
- iOS and Android photo manipulation 'Morph App' by whatwedomedia
- Onsite Software Engineers in Germany by sudhirshree
- Augmented reality by merder99
- Nonpublic project #1433560 by vobla73
- Mobile app coder needed for quick, simple app by Ergometrix




Comments
دردشة سورية دردشة
دردشة سورية
دردشة لبنانية
دردشة عراقية
شات سوري
شات لبناني
دردشة سوريا
دردشة لبنان
شات سوريا
شات لبنان
دردشة السويدي
منتديات السويدي
اغاني عراقية
صور فنانين
الرياضة العراقية
شعراء العراق
نغمات عراقية
اغاني عربية
اغاني كردية
دردشة عراقية
دردشة بنات العراق
دردشة صبايا بغداد
دردشة البصره
دردشة بغداد
دردشة بغدادية
دردشة صبايا بغداد
دردشة شباب العراق
دردشة بنات العراق
دردشة الكرادة
دردشة دمشق
دردشة بيروت
دردشة حلب
دردشة حلب
دردشة عراقية
دردشة العراق
شات عراقي
جات عراقي
دردشه عراقيه
دردشة صبايا لبنان
دردشة بنات لبنان
شات صوتي | دردشة صوتية | كلام
شات صوتي
| دردشة صوتية
|
كلام
| شات كلام
|
دردشة كلام
| دردشة صوتية
|
شات صوتي
| شات
|
Chat Voice
| ahj w,jd
شات صوتي
| دردشة صوتية
|
شات صوتي
| دردشة صوتية
|
دردشه
| دردشة
|
صوتي
| صوتية
|
شات صوتي
| دردشة صوتية
|
شات صوتي
| دردشة صوتية
|
الكلام
| دردشه صوتيه
|
]v]am w,jdm
| ]v]ai w,jdi
شات صوتي
شات صوتي
شات صوتي
Good
Good post. Very impressive. Thanks for sharing.
android tablet
wenger backpack
Thank you very much. I
Thank you very much. I couldn't find the second part of your article. Good job!
Mick from mobile app development
thanks
thanks for your article its really great and useful
sportbike specifications SKEMA RANGKAIAN Electronic Circuit scolarship wireless car specifications gadget and computer car first look Motorcycle Modification sexi-stars. newlaptop circuits-audio electronic projects auto girl weapons system science kids gadget bikes walpaper mobil-wallpaper MODIFIKASI MOBIL plane-wallpaper celebsexypict artist-scandal sport-cars bikespict motor-modify sexi-model laptopharga gambar-artist fast-superbike autoshowmodel harga-kamera notebook-price diamonds-collections phones-gallery camera-prices home-pic audio-gallery autocarpict living-cares homes life-style
Thank you - the site very
Thank you - the site very very nice
شات الحب - شات مصري - شات بنات مصر - شات صوتي - دردشة مصرية - شات مصرية - شات حب - شات - دردشة - Chat - love chat - دردشة الحب
توبيكات نونو توبيكات توبيكات
توبيكات نونو
توبيكات
توبيكات سعودي
توبيكات 2012
توبيكات بنات
العاب نونو
العاب
العاب بنات
games
شات لمني الصوتي
دردشة لمني الصوتية
شات صوتي لمني
شات صوتي
دردشة صوتية
دردشة
دردشه
شات سعودي
شات خليجي
سكر بنات
جات
شات صوتي سعودي خليجي
chat voice
ahj
خليجي الصوتي
سعودي الصوتي
دردشة صوتي
شات صوتي
دردشة صوتية
شات كتابي
شات كتابي خليجي
شات عسل الصوتي
دردشة كتابية
chat
سعودي كول
سعودي كول 6666
كول
سعودي
سعودي كول انحراف
سعودي كول بنات
سعودي كول 1994
chat saudi col
شات سعودي كول
سعودي انحراف
سعودي انحراف2010
سعودي انحراف الصوتي
شات سعودي انحراف
دردشة سعودي انحراف
سعودي انحراف الصوتية
شبكة سعودي انحراف
سعودي انحراف الاصلي
سعودي انحراف كول
سعودي انحراف 2010
انحراف سعودي
saudideviation
دردشة صوتية سعوديه
دردشة صوتية سعودية
دردشة كتابية
دردشة كتابية خليجية
شات
دردشة
خاص للبنات
عرب ذوق
عرب ذوق الصوتي
عرب ذوق الصوتية
دردشة عرب ذوق
شات عرب ذوق
شبكة عرب ذوق
شات صوتي بنات
شات بنات الصوتي
دردشة بنات الصوتي
Girls Chat
شبكة عفناك
صوتية عفناك
شات عفناك
دردشة عفناك
عفناك الصوتي
دردشة عفناك
الخيال
الخيال كام
شبكة الخيال
الخيال الصوتي
الخيال الصوتية
دردشة الخيال
الخيال الصوتية
دردشة صوتية الخيال
شات سعودي خليجي
منتدى نونو
منتدى
منتديات
موقع
شبكة
نونو
Chat Nono
ahj w,jd
]v]am w,jdm
دليل مواقع ويب
دليل مواقع
دليل
مواقع
بنت كول
بنت كول الصوتي
شات بنت كول
دردشة بنت كول
شات بنت كول الصوتية
بنت كول الصوتيه
سعودي كول
صوتية سعودي كول
شات سعودي كول
دردشة سعودي كول
سعودي كول الصوتي
سعودي كول 6666
سعودي كول6666
سكر بنات
شات صوتي زين
شات صوتي ملوك
شات صوتي سعودي
شاتات صوتيه
مكتبة ماسنجر
شات صوتي حبي
شات صوتي كويت
YouTube - Broadcast Yourself. , اليوتيوب نونو
صيف كام
شات صوتي كول
شات انحراف
وه بس
خريطة الموقع نونو
الرياض كول الصوتي
كامات 6666
شات المها
كامات6666
شات كامات 6666
كامات 666
كامات 66
سعودي انحراف
شاتكامات6666
سعودي احوه
شات سعودي احوه
سعودي احوه الصوتي
سعودي احوه كول
دردشة سعودي احوه
احوه سعودي
بنات احوه
دبي الصوتي
سعودي في اي بي الصوتي
شبكة الرياض الصوتي
روعة الليل
لايف كام
الخليج كام
شات كان زمان الصوتي
شات صوتي قصيمي
شات قلبي
ارجوان
شات صوتي قطري
بدور الخليج
منتدى روح
شبكة روح
روح ديزاين
تحميل ماسنجر بلس
توبيكات حزينه
توبيكات
ماسنجر
ماسنجر بلس
تحميل ماسنجر
توبيكات رومنسيه
منتديات روح
دردشة
شات سعودي
خليجي
شات صوتي
توبيك
موقع توبيكات
سعودي كول 6666
سعودي انحراف 2011
سعودي كول
سعودي انحراف
thank you for information حجز
thank you for information
حجز فنادق مكة
فنادق مكة
This article gives the light
This article gives the light in which we can observe the reality. this is very nice one and gives in-depth information. thanks for this nice article... Mercedes-Benz Mobil Mewah Terbaik Indonesia | Mercedes-Benz Mobil Mewah Terbaik Indonesia | Meriahkan pesta ulang tahun bersama GarudaFood | Mari Berkomunitas Di Faceblog | Harga Jual Blackberry iPhone Laptop Murah | Video Music | Mp3 | Beauty and Health
Property Investment
This features that help you to have innovative customisation for Android unlock store. To unlock the phone, there is simple slide bar to unlock the phone. Widget locker gives two options to unlock the screen and make it a useful tool. First thing is that on unlock screen any android widget can be placed. Baju Muslim | Property Investment
android
Android is a software stack for mobile devices that includes an operating system, middleware and key applications. business plan writing
Hosting
I was very pleased to find this site.I wanted to thank you for this great read.
vps hosting | forex vps
This features that help you
This features that help you to have innovative customisation for Android unlock store.
GSM Kampanya | Bilişim Teknoloji | Cep Telefonu | Turkcell Kampanyaları | Avea Kampanyaları | Vodafone Kampanyaları
Widget
This features that help you to have innovative customisation for Android unlock store. To unlock the phone, there is simple slide bar to unlock the phone. Widget locker gives two options to unlock the screen and make it a useful tool. First thing is that on unlock screen any android widget can be placed.
Wholesale
glad there is part 2
this is really helpful since im in too widgets. tax liens
We can give them a good
We can give them a good education that they can use in their life to get a better chance in this life. Im sure with a good education all of us will see the changing that all that kids can have. Madaline Oceguera
I have been searching for
I have been searching for some information about it almost three hours. You helped me a lot indeed and reading this your article I have found many new and useful information about this subject. the diet solution
اي فون, ايفون 4, سعر اي فون
اي فون, ايفون 4, سعر اي فون 4, برنامج ايفون, IPhone
اي فون, ايفون 4, سعر اي فون 4, برنامج ايفون, IPhone
اي فون
اي فون 4
ايفون 4
ايفون
سعر اي فون
برنامج ايفون
IPhone
اي فون, ايفون 4, سعر اي فون 4, برنامج ايفون, IPhone
اي فون
اي فون 4
ايفون 4
ايفون
سعر اي فون
برنامج ايفون
IPhone
اعلانات عرب اي فون
اي فون
اخبار اي فون
برنامج اي فون
العاب اي فون
ثيمات اي فون
خلفيات اي فون
نغمات اي فون
اكسسوارات اي فون
سعر اي فون
منتدى الاي فون العام
اي فون
اي فون
اي فون
اي فون
اي فون
اي فون
اي فون
اي فون 4
ايفون 4
ايفون
سعر اي فون
برنامج ايفون
IPhone
اي فون, ايفون 4, سعر اي فون 4, برنامج ايفون, IPhone
اي فون
اي فون 4
ايفون 4
ايفون
سعر اي فون
برنامج ايفون
IPhone
اعلانات عرب اي فون
اي فون
اخبار اي فون
برنامج اي فون
العاب اي فون
ثيمات اي فون
خلفيات اي فون
نغمات اي فون
اكسسوارات اي فون
سعر اي فون
منتدى الاي فون العام
اي فون
اي فون
اي فون
اي فون
اي فون
اي فون
تسريحات منتديات مكياج ازياء
تسريحات منتديات مكياج ازياء رسائل وسائط مسجات توبيكات وظيفة وظائف ديكور بلايز رجيم رشاقة حلويات معجنات نكت ديكورات لاين سبورت رمزيات صور رمزيه توبيكات ملونه صور العاب
how well thought out
Oh, how well thought out. It is necessary to take advantage. Needed to keep pace with the age of 21! Beauty salon
Thank you for
I thank the very Code, which provides management services Almmmezp each member who participates Bmodia deals and the progress of the new and more Thank you
شات
دردشة
شات مصرى
شات مصرية
دردشة مصرية
دردشة مصر
منتديات بحبك
شات بنات
شات مصر
شات بنات مصر
العاب
دليل
اختصار روابط
Well, I am so excited that I
Well, I am so excited that I have found this your post because I have been searching for some information about it almost three hours. You helped me a lot indeed and reading this your article I have found many new and useful information about this subject. the diet solution
We can give them a good
We can give them a good education that they can use in their life to get a better chance in this life. Im sure with a good education all of us will see the changing that all that kids can have. Mac DVD Ripper
pour ajouter un widget
Bonjour, pour ajouter un widget à l’écran d’accueil de ton tel, il suffit d’appuyer 3 secondes sur l’ecran, une liste va alors s’afficher. il suffit de naviguer dans Applications, puis choisir celle qui t’intéresse.
tu verras alors le widget s’afficher sur l’ecran d’accueil.
Generique viagra generique, acheter clomid femme acheter clomid.
Companies these days are
Companies these days are using ergonomic furniture to ensure that there are no injuries from work related hazards. Use an ergonomic chair and feel better comfort in your back and shoulder. lån
it is sometimes hard to
it is sometimes hard to Pandora in a world of adults Pandora Bracelets
Nice job
Nice job guys :)