码迷,mamicode.com
首页 > 移动开发 > 详细

android常用控件纪录

时间:2015-03-31 10:33:35      阅读:132      评论: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
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!