布局檔案:
android:selectallonfocus="true" //如圖"ggg"表示當edittext取得焦點會全選所有內容
android:password="true" //表示輸入的內容為密碼保護形式
android:phonenumber="true" //表示輸入的內容為數字形式
android:background="@drawable/bg_border" //指示background的內容在drawable資料夾的bg_border.xml檔名中
bg_border.xml:
<?xml version="1.0" encoding="utf-8"?>
android講義2之自定義view
1.首先建立乙個類繼承view 2.重寫ondraw canvas canvas 方法 3.實現乙個paint類,此類可以看成為乙個畫筆,能設定顏色,線條等屬性 4.使用canvas的方法在螢幕上畫圖 6.在乙個activity類中實現繼承了view的那個類 7.把這個類使用addview 方法新增...
Android之介面處理
1 去除上邊框 設定主題如下 android allowbackup true android icon mipmap icon android roundicon mipmap icon android supportsrtl true 出現問題 這樣會導致乙個問題就是在頁面中有可能一些會被上邊框...
android 之EditText輸入檢測
最近開發乙個功能的時候發生乙個故事,其情節如下 功能其實不複雜,其中需要乙個edittext來獲取使用者輸入的資訊.於是,我做了乙個dialog來顯示我的輸入介面 如下 malertdialog new alertdialog.builder this android.r.style.theme h...