Read "Android from getting Started to mastering" (16)--Table clock

Source: Internet
Author: User

Table Clock (AnalogClock)

Java.lang.Object;
Android.view.View;
Android.widget.AnalogClock;

AnalogClock class method


AnalogClock Example

Complete project: http://download.csdn.net/detail/sweetloveft/9416138

This program as long as the map can be, recall before the DigitalClock, and later verified that this kind of engineering is generally a map, not to self-painted words, need to do related rewriting of derived classes, which will be used to Canvas and other aspects of the content.

1.mainactivity.java
Package Com.sweetlover.activity;import Com.sweetlover.analogclockdemo.r;import Android.app.activity;import Android.os.bundle;public class Mainactivity extends Activity {@Overrideprotected void OnCreate (Bundle Savedinstancestate) {//TODO auto-generated method Stubsuper.oncreate (savedinstancestate); Setcontentview ( R.layout.activity_main);}}
2.activity_main.xml
<?xml version= "1.0" encoding= "Utf-8"? ><linearlayout xmlns:android= "http://schemas.android.com/apk/res/ Android "    android:layout_width=" match_parent "    android:layout_height=" match_parent "    android:padding= "30DP"    android:orientation= "vertical" >    <analogclock        android:id= "@+id/analogclock1"        Android:layout_width= "Wrap_content"        android:layout_height= "wrap_content"        android:layout_gravity= " Center "/></linearlayout>
3.androidmanifest.xml
<manifest xmlns:android= "http://schemas.android.com/apk/res/android"    package= " Com.sweetlover.analogclockdemo "    android:versioncode=" 1 "    android:versionname=" 1.0 ">    <uses-sdk        android:minsdkversion= "8"        android:targetsdkversion= "/>"    <application        android: Allowbackup= "true"        android:icon= "@drawable/ic_launcher"        android:label= "@string/app_name"        android: Theme= "@style/apptheme" >        <activity android:name= "com.sweetlover.activity.MainActivity" >            < intent-filter>                <action android:name= "Android.intent.action.MAIN"/>                <category android:name= "Android.intent.category.LAUNCHER"/>            </intent-filter>        </activity>    </ Application></manifest>

Read "Android from getting Started to mastering" (16)--Table clock

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

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.