移动开发关键技术实验.doc
文本预览下载声明
计算机科学和信息工程学院
实 验 报 告
课程名称
Android移动开发技术和应用
试验名称
基础UI组件设计试验
专 业
金融信息化
班 级
二班
学号
学生姓名
胡记萍
指导老师
陈旭东
试验目标:
熟悉Android应用程序基础UI组件。
试验内容:
TextView类
EditText类
Button类
ImageButton类
RadioButton类
试验环境:
试验教室:睿智楼10310
试验器材:计算机上机操作
试验步骤:
(1)TextView类:
TextView
android:layout_width=fill_parent
android:layout_height=wrap_content
android:text=欢迎进入爱好大调查系统
android:gravity=center
android:textColor=#000000
android:textSize=25px
android:id=@+id/textViewHello /
(2)EditText类:
EditText
android:id=@+id/editTextName
android:layout_width=wrap_content
android:layout_height=wrap_content
android:hint=请输入名字
/EditText
(3)Button类:
Button
android:id=@+id/buttonSubmit
android:layout_width=wrap_content
android:layout_height=wrap_content
android:text=进入调查系统 /
(4)ImageButton类:
ImageButton
android:id=@+id/imageButton0cc
android:layout_width=wrap_content
android:layout_height=wrap_content
android:layout_margin=10dp
android:src=@drawable/ic_launcher /
ImageButton
android:id=@+id/imageButtonHobb
android:layout_width=wrap_content
android:layout_height=wrap_content
android:layout_alignLeft=@+id/imageButton0cc
android:layout_below=@+id/imageButton0cc
android:src=@drawable/ic_launcher /
ImageButton
android:id=@+id/imageButtonPicture
android:layout_width=wrap_content
android:layout_height=wrap_content
android:layout_alignLeft=@+id/imageButtonHobb
android:layout_below=@+id/imageButtonHobb
android:layout_marginTop=16dp
android:src=@drawable/ic_launcher /
(5)RadioButton类:
TextView
android:id=@+id/textViewDisplay
android:layout_width=fill_parent
android:layout_height=wrap_content
android:layout_above=@+id/radioButton1
android:layout_alignParentLeft=true
android:layout_ma
显示全部