赞
踩
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=
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。