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

 

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));
       
    }
   
   
   
}

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值