当前位置:   article > 正文

Android实验——实验1 用户界面:线性布局

Android实验——实验1 用户界面:线性布局

实验1 用户界面:线性布局

一、实验目的

1、理解Android布局管理器及其属性,掌握线性布局用户界面(UI)的设计方法。
2、掌握在XML文件和Java代码中访问字符串、数组、颜色和尺寸等资源的方法。
3、掌握在Java代码中获取UI控件对象及事件处理的方法。

二、实验要求

设计并实现一个电子邮件APP的模拟程序,完成用户登录和发送邮件的功能,具体要求如下:
1. 定义字符串数组资源,保存可登录的用户。
2. 采用线性布局定义XML布局资源,使用EditText、Button和TextView控件定义用户界面。
3. 在Activity类中,获取控件对象,采用匿名类为相关控件添加事件监听器,完成事件处理。
4. 使用Toast对象显示相关运行信息。

效果

效果

三、实验内容

acticty_main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="@dimen/side"
    android:orientation="vertical"
    tools:context="cn.yimispace.email.MainActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">
        <EditText
            android:id="@+id/username"
            android:layout_width=
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/430127
推荐阅读
相关标签
  

闽ICP备14008679号