安卓第七天————註冊界面的實現

 

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

 

發佈了68 篇原創文章 · 獲贊 2 · 訪問量 5萬+
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章