介面最佳化處理技術之(二)編輯文字框組件最佳化處理,文字框組件

來源:互聯網
上載者:User

介面最佳化處理技術之(二)編輯文字框組件最佳化處理,文字框組件

開發步驟:

  • 在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                 <EditText13                     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只需一種狀態。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.