Sup everyone! Happy Holiday to all.This time r2d is back with another cool android project. We are going to make a digital clock widget of our own. Isn't that cool!
Note that Android has an in-built Digital Clock widget in its layouts , but we want more customization so we are implementing our own version of it. So let's roll.
1. Create a new Android Application Project
Go to File > New > Android Application Project.
Complete the wizard and create a new Activity (MainActivity.java).
In the activity_main.xml file under res/layout, create two TextView s to be used to show time and date.
The code and the resulting layout will be like this-
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2. Add a new AppWidgetProvider resource to res/xml
Create the res/xml folder if not available already.
Add a new xml to this folder and name it widget_xml.xml (or anything you like).
Add the code given below to the xml file.The Structure is also shown if figure below.
The fields are as described below:
Min Width/Height - min. width/height with which the widget will be drawn.
Min. Resize Width/Height - width/height to which it can be re-sized.
Initial layout - the layout which is used to draw the widget.
Resize Mode - direction in which re-size is allowed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Remove the <activity> tag from your <application> tag as our app doesn't implement an activity.Instead add a receiver for the widget as shown below:-
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
The MainActivity extends AppWidgetProvider so that it can use the services of the Android API.
The various methods such as OnReceive(), OnUpdate() , OnEnabled(), OnDisabled() of the AppWidgetProvider are overridden , to apply widget life cycle methods.
The OnReceive() method is called when the widget receives call to update its contents. Here we get all the id(s) for all the instances of our widget , and call updatetime() method the we defined, to update time in every instance.
The createClockIntent() method is used by the AlarmManager to send a pending Intent to our widget every 1000 msec. The Android system only allows to update a widget every 30min (due to several reasons). So we use Alarm Manager to update it each second.
The OnEnabled() method is used to start the Alarm Manger and the method OnDisabled() is where the timer is disabled.
Finally in the OnUpdate() method we acquire a Wake Lock, to keep the CPU on (Note that this is not necessary here ,but I thought to show it's use here). the it uses RemoteViews to send Pending Intent to each TextView to open ALARM Intent. Finally the Wake Lock is released.
The updatetime() method is just filling the TextViews with the required time and date.
Hi there, I am Shobhit Chittora. I am a college student and like to develop apps for Android platform.I started this blog to share my experiences with Android development and may be help you guys on the “roadtodroid”.
0 comments:
Post a Comment