首页 > 移动平台 > 详细

android常用控件纪录

时间:2015-03-31 10:31:32      阅读:146      评论:0      收藏:0      [点我收藏+]
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

 
<TextView android:id="@+id/txtzhangxu"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="程序执行结果"/>

<EditText android:id="@+id/edtzhangxu"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:inputType="text"   
    android:text=""/>   
    //输入类型定义,text代表所有输入都可以,number只能输入数字
    
<Button android:id="@+id/butzhangxu"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" 
    android:text="执行"/>


</LinearLayout>

 layout main.xml

android常用控件纪录

原文:http://www.cnblogs.com/hitxx/p/4380110.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!