标签:
<?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
标签:
原文地址:http://www.cnblogs.com/hitxx/p/4380110.html