当前位置:   article > 正文

用Android Studio设计的一个简单的闹钟APP_android stdio 电话闹钟的首页设计

android stdio 电话闹钟的首页设计
     该闹钟是用Android Studio为安卓手机设计的一个简单的闹钟APP
  • 1

一、介绍系统的设计界面
在这里插入图片描述

      闹钟的布局文件代码如下
  • 1
<?xml version="1.0" encoding="utf-8"?>

<TimePicker
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:id="@+id/timePicker"
    android:layout_alignParentTop="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/alarm_state"
    android:layout_marginTop="5dp"
    android:textSize="18dp"
    android:text="Start"
    android:id="@+id/alarm_on"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true" />

<Button
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/alarm_state"
    android:layout_marginTop="5dp"
    android:textSize="18dp"
    android:text="Stop"
    android:id="@+id/alarm_off"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true" />

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:paddingTop="10dp"
    android:textSize="25dp"
    android:text="Did you set the alarm?"
    android:id="@+id/alarm_state"
    android:layout_below="@+id/timePicker"
    android:layout_centerHorizontal="true" />

<Spinner
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:textSize="18dp"
    android:id="@+id/spinner"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true" />
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
秒表功能包含四个功能键,分别为开始,暂停、继续和重置。所以需要四个Button,然后需要三个EditText分别用来给用户输入时分秒。具体的代码如下:
  • 1

<com.example.administrator.alarm5.TimerView
android:id="@+id/tabTimer"
android:layout_width=“match_parent”
android:layout_height=“match_parent”
android:orientation=“vertical”>

                    <EditText
                        android:textAppearance="?android:attr/textAppearanceLarge"
                        android:id="@+id/etHour"
                        android:inputType="number"
         
  • 1
  • 2
  • 3
  • 4
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/675810
推荐阅读
相关标签