android:hint="請輸入使用者名稱..."
android:textcolorhint="#00ff00"
設定android:phonenumber="true"就可以把edittext變成只接受**號碼輸入的文字框,連軟鍵盤都已經變成撥號專用軟鍵盤了,所以不用再擔心輸入其他字元了。
設定android:inputtype來設定文字的型別,android:inputtype="number"讓輸入法選擇合適的軟鍵盤的。
public class btn2activity extends activity
});// 獲取edittext文字
button getvalue = (button) findviewbyid(r.id.btn_get_value);
getvalue.setonclicklistener(new onclicklistener()
});// 讓edittext全選
button all = (button) findviewbyid(r.id.btn_all);
all.setonclicklistener(new onclicklistener()
});// 從第2個字元開始選擇edittext文字
button select = (button) findviewbyid(r.id.btn_select);
select.setonclicklistener(new onclicklistener()
});// 獲取選中的文字
edittext輸入型別總結
總結一下edit 輸入型別總結 android inputtype none 隨便吧 android inputtype text 文字型別,多為大寫 小寫和數字符號 android inputtype textcapcharacters 字母大寫 android inputtype textcap...
edittext基本用法總結 md
edittext.setselection 2 記住乙個不能越界的bug edittext.setcursorvisible false 設定游標顯示,不能設定游標顏色 設定游標顏色 xml中指定 androd textcursordrawable,如果需要設定成與字型一樣的顏色,改屬性設定為 nu...
EditText的一些使用技巧
1.讓edittext不自動獲取焦點 將edittext的某個父級控制項設定成 android focusable true android focusableintouchmode true 2.改變軟鍵盤右下角確認鍵 設定edittext控制項的imeoptions屬性 edittext and...