I am trying to create a custom EditText view. The function of this is, as we type it will display encrypted string on screen (similar to password display, instead of *** I want to display encrypted text).
I don't want to use canvas.drawText() inside my onDraw(). I want to use TextView only to draw my text.(Reason is to
Here my code of custom view. I am facing problem, nothing is displayed inside my EditText.
public class MyEditText extends EditText {
Context context = null;
private TextView tv = null;
LinearLayout ll = null;
public TamilEditText(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init(context);
}
public TamilEditText(Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
}
public TamilEditText(Context context) {
super(context);
this.context = context;
init(context);
}
private void init(Context context) {
LayoutInflater li = LayoutInflater.from(context);
ll = (LinearLayout) li.inflate(R.layout.txtlayout, null);
tv = (TextView) ll.findViewById(R.id.txt);
}
@Override
protected void onDraw(Canvas canvas) {
//super.onDraw(canvas);
tv.draw(canvas);
String str = encrypt(getText().toString());
tv.setText(str);
}
private String encrypt(String str) {
return str;
}
}
Thanks in advance.