EditText點滴

二、android中EditText輸入字數統計和限制 :android

http://blog.163.com/meijuan_520/blog/static/85281982012123113770/ ide

一、驗證:佈局

btnLogin.setOnClickListener(new OnClickListener() {
   
   @Override
   public void onClick(View v) {
    if (!username.getText().toString().equals("liyuhao")) {
     username.setError("用戶名錯誤",getResources().getDrawable(R.drawable.jewelry1));
    }
   }
  });測試

btnLogin.setOnClickListener(new OnClickListener() {
   
   @Override
   public void onClick(View v) {
    if (!username.getText().toString().equals("liyuhao")) {
     Drawable drawable = getResources().getDrawable(R.drawable.jewelry1);
     drawable.setBounds(0, 0, 40, 40);  //必須設置,不然不顯示
     username.setError("用戶名錯誤",drawable);
    }
   }
  });spa

3。edittext在scrollview中,首次加載頁面的時候:edittext就自動會獲取焦點,scrollview滑動到底部的時候回自動日後反彈。解決辦法:http://bbs.csdn.net/topics/390536532?page=1 .net

在整個佈局的最外層加了
android:focusable="true"  
android:focusableInTouchMode="true" 
這樣,當觸摸滑動的時候焦點就從EditText 搶過來了。
測試scrollView 能夠下拉完整顯示了。blog

四、Android EditText控件自動轉換大小寫,光標位置不跳位:ci

http://my.oschina.net/raddleoj/blog/215051 get

五、Edittext 綁定刪除鍵代碼實現與注意:it

http://my.oschina.net/u/246578/blog/210534 

http://blog.csdn.net/feizhixuan46789/article/details/16801429 

相關文章
相關標籤/搜索