您的位置:首页 > 其它

安卓第七天————注册界面的实现

2011-12-13 21:46 197 查看
table_layout.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_width="wrap_content"

android:layout_height="wrap_content"

android:gravity="center"

android:text="电子邮箱" />

<EditText

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:inputType="textEmailAddress"

/>

</TableRow>





<TableRow >



<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:gravity="center"

android:text="用户名" />



<EditText

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:inputType="text"

/>



</TableRow>





<TableRow >



<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:gravity="center"

android:text="密码" />



<EditText

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:password="true"

/>



</TableRow>





<TableRow >



<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:gravity="center"

android:text="确认密码" />



<EditText

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:password="true"

/>



</TableRow>







<RelativeLayout

android:layout_width="match_parent"

android:layout_height="match_parent"



>









<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:gravity="center"

android:text="验证码"

android:id="@+id/t1"

/>



<EditText

android:layout_width="80dp"

android:layout_height="30dp"

android:inputType="number"

android:id="@+id/e1"

android:layout_toRightOf="@id/t1"

/>



<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:gravity="center"

android:background="@drawable/b"

android:text="30+20=?"

android:textColor="#FF0000"

android:id="@+id/t2"

android:layout_toRightOf="@id/e1"



/>







<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:gravity="center"

android:id="@+id/tvhtml"

android:layout_toRightOf="@id/t2"

/>





<CheckBox

android:id="@+id/checkBox1"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_below="@id/t1"

/>





<TextView

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_marginLeft="40dp"

android:id="@+id/tvhtml2"



android:layout_below="@id/e1"

/>



<Button



android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:text="提交注册"

android:layout_below="@id/tvhtml2"

android:layout_marginLeft="50dp"

/>





</RelativeLayout>







</TableLayout>





TextViewTestActivity.java

package cn.class3g.activity;

import android.app.Activity;

import android.os.Bundle;

import android.text.Html;

import android.widget.TextView;

public class TextViewTestActivity extends Activity {

/** Called when the activity is first created. */

@Override

public void onCreate(Bundle savedInstanceState) {

super.onCreate(savedInstanceState);

setContentView(R.layout.table_layout);



TextView tv= (TextView) this.findViewById(R.id.tvhtml);

TextView tv2= (TextView) this.findViewById(R.id.tvhtml2);



String htmlStr="看不清?<a href='#' >换一个</a>";

String htmlStr2="<input type='checkbox' name='box' value='box'>我已阅读并同意<a href='#'>《凤凰使用协议》";

tv.setText(Html.fromHtml(htmlStr));

tv2.setText(Html.fromHtml(htmlStr2));



}







}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: