Android 自定義EditText清除功能輸入

2021-08-10 12:50:33 字數 1954 閱讀 1914

1.建立乙個類(用來自定義控制項)clearedittext

2.在布局中使用  包名+類名

android:id="@+id/clearedittext"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:layout_margin="10dip"

android:paddingright="8dip"

android:paddingtop="5dip"

android:paddingbottom="5dip"

android:hint="請輸入qq號碼"

android:drawableleft="@drawable/super_qq" //左邊的

android:drawableright="@drawable/clear_normal_list" />

//清除的

public class clearedittext extends edittext implements textwatcher,

onfocuschangelistener

public clearedittext(context context, attributeset attrs)

public clearedittext(context context, attributeset attrs, int defstyle)

/**

* 初始化各元件

* @param attrs

*            屬性集

*/

private void initwedgits(attributeset attrs) catch (exception e)

}

/**

* 初始化資料

*/

private void initdatas() catch (exception e)

}

/**

* 新增事件監聽

*/

private void addlisteners() catch (exception e)

}

@override

public void beforetextchanged(charsequence s, int start, int count,

int after)

@override

public void ontextchanged(charsequence s, int start, int before, int after) else

setcompounddrawableswithintrinsicbounds(left, null, right, null);

}

}

}

@override

public boolean ontouchevent(motionevent event)

}

break;

default:

break;

}

} catch (exception e)

return super.ontouchevent(event);

}

@override

public void aftertextchanged(editable s)

@override

public void onfocuschange(view v, boolean hasfocus) catch (exception e)

}

}

Android自定義控制項 自定義屬性

自定義屬性的過程 1.在res values資料夾中建立attrs的xml檔案。2.寫入標籤,定義子標籤attr,放入自定義屬性的名稱。format 可以用 來同時使用 1 reference 參考某一資源id 2 color 顏色值 3 boolean 布林值 4 dimension 尺寸值 帶有...

Android自定義View 自定義元件

自繪控制項也分兩種,自定義元件和自定義容器,自定義元件是繼承view類,自定義容器時繼承viewgrounp 今天主要分析下自定義元件 還是舉個例子來的實際些,假如我們要畫乙個最簡單的textview,首先想到的就是canvas.drawtext 方法,怎麼畫了?還是得一步一步來 1 寫乙個myte...

Android自定義控制項之自定義View 二

效果如下圖 1 自定義ringview繼承view新增其構造方法並建立畫筆 public class ringview extends view protected boolean isrunning false public ringview context context public ring...