Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> Android開發 >> 關於android開發 >> 界面優化處理技術之(二)編輯文本框組件優化處理,文本框組件

界面優化處理技術之(二)編輯文本框組件優化處理,文本框組件

編輯:關於android開發

界面優化處理技術之(二)編輯文本框組件優化處理,文本框組件


開發步驟:

  • 在res下drawable下創建xml文件
  • 添加標簽設置顯示效果
1 <?xml version="1.0" encoding="utf-8"?>
2 <shape xmlns:android="http://schemas.android.com/apk/res/android" >
3     <corners android:radius="8dp"/>
4     <solid android:color="#FFFFFF"/>
5     <stroke android:width="0.5dp" android:color="#CCCCCC"/>
6 </shape>

 

  • 布局文件標簽設置background屬性
 1 //activity_login.xml
 2 
 3                 <EditText
 4                     android:id="@+id/txtAccount"
 5                     android:layout_width="fill_parent"
 6                     android:layout_height="35dp"
 7                     android:hint="請輸入帳號:"
 8                     android:textSize="12sp"
 9                     android:textColor="#000000"
10                     android:background="@drawable/txt_bg"
11                     android:paddingLeft="10dp"/>
12                 <EditText
13                     android:id="@+id/txtPassword"
14                     android:layout_width="fill_parent"
15                     android:layout_height="35dp"
16                     android:hint="請輸入密碼:"
17                     android:textSize="12sp"
18                     android:textColor="#000000"
19                     android:inputType="textPassword"
20                     android:background="@drawable/txt_bg"
21                     android:paddingLeft="10dp"
22                     android:layout_marginTop="10dp"/>

 

運行:

小結:編輯文本框的優化和按鈕優化的不同之處在於,不用而直接用,原因是Button須兩種狀態,而EditText只需一種狀態。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved