您的位置:首页 > 移动开发 > Android开发

举例说明Android中AnalogClock的使用

2012-09-10 16:22 363 查看
该类在android developers中的介绍如下:

a

ndroid.widget.AnalogClock


@RemoteView

public class

AnalogClock

extends View

java.lang.Object
android.view.View
android.widget.AnalogClock

Class Overview

This widget display an analogic clock with two hands for hours and minutes.

Summary

翻译如下:

对于该类总的看法如下:

这个部件有两个指针分别用来显示时和分,展示了一个类似于钟表的东西。

这个类可以用来装饰一些界面用来显示时间,具体用法如下所示:

import android.app.Activity;

import android.os.Bundle;

import android.widget.AnalogClock;

public class A04Activity extends Activity {

private AnalogClock clock;

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

clock=(AnalogClock)findViewById(R.id.clock);

}

}

res/layout/main.xml如下所示:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:orientation="vertical" >

<TextView

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="@string/hello" />

<AnalogClock

android:id="@+id/clock"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

android:clickable="false"

/>

</LinearLayout>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: