zoukankan      html  css  js  c++  java
  • Android中的DigitalClock和AnalogClock

    先来看看效果图吧:

    main.xml代码如下:

     1 <?xml version="1.0" encoding="utf-8"?>
     2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     3     android:layout_width="fill_parent"
     4     android:layout_height="fill_parent"
     5     android:orientation="vertical" >
     6 
     7     <TextView
     8         android:layout_width="fill_parent"
     9         android:layout_height="wrap_content"
    10         android:text="@string/hello" />
    11 
    12     <DigitalClock
    13         android:id="@+id/digitalClock1"
    14         android:layout_width="wrap_content"
    15         android:layout_height="wrap_content"
    16         android:text="DigitalClock" 
    17         android:textSize="14px"/>
    18 
    19     <AnalogClock
    20         android:id="@+id/analogClock1"
    21         android:layout_width="wrap_content"
    22         android:layout_height="wrap_content" />
    23 
    24 </LinearLayout>
  • 相关阅读:
    django 大体流程
    JavaScript概述
    前端css
    前端基础,加标签
    hashlib模块
    MySQL 了解知识点
    MySQL Navicat 使用
    mysql的基本查询语法及方法 多表查询
    MySQL 外键 一对一 一对多 多对多 复制
    It's likely that neither a Result Type nor a Result Map was specified
  • 原文地址:https://www.cnblogs.com/rollenholt/p/2506033.html
Copyright © 2011-2022 走看看