安卓简单布局

新建安卓项目:UILayoutTest
MainActivity.java

package com.example.uilayouttest;import android.app.Activity;import android.os.Bundle;import android.view.Window;public class MainActivity extends Activity{    protected void onCreate(Bundle savedInstanceState) {        super.onCreate(savedInstanceState);        requestWindowFeature(Window.FEATURE_NO_TITLE);        setContentView(R.layout.activity_main);    }}

XML文件

title.xml<?xml version="1.0" encoding="utf-8"?><TableLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:stretchColumns="1" >     <TableRow>        <TextView            android:layout_height="wrap_content"            android:text="Account:" />        <EditText            android:id="@+id/account"            android:layout_height="wrap_content"            android:hint="请输入你的账号" />    TableRow>    <TableRow>        <TextView            android:layout_height="wrap_content"            android:text="Password" />        <EditText            android:id="@+id/password"            android:layout_height="wrap_content"            android:inputType="numberPassword" />    TableRow>    <TableRow>        <Button            android:id="@+id/Login"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_span="2"            android:text="Login" />    TableRow>TableLayout>

activity_main.xml

<?xml version="1.0" encoding="utf-8"?><LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:orientation="vertical" >    <include layout="@layout/title" />LinearLayout>

运行效果如图所示

Android简单练习(TableLayout)_第1张图片


2015年8月31日22:51:48

更多相关文章

  1. android加载效果,带百分比的
  2. android Gallery3D效果
  3. Android Layout Tricks #3: Optimize by merging(Android 布局技
  4. Android的按钮按下效果
  5. Android用悬浮按钮实现翻页效果
  6. android一种较为复杂的布局参考(xml文件)
  7. android使用同一个RecyclerView实现两种不同Item布局
  8. Android Studio [相对布局RelativeLayout]
  9. [中英文对照]android Designing for TV(一) ------ Optimizing L

随机推荐

  1. Android(安卓)M 运行时权限
  2. Android(安卓)自定义复合组件Demo
  3. Android(安卓)EditText加载HTML内容(内容
  4. Android(安卓)之 多线程和Socket套接字的
  5. linux: 编译android源代码流程,以及linux
  6. Android(安卓)NDK数据类型转换详解
  7. Eclipse 无法查看 Android(安卓)源代码
  8. android eclipse的环境配置
  9. 安卓ADT项目及升级AS(Android(安卓)Studi
  10. Android(安卓)命令窗口中adb常用命令