I am trying to have compound drawable for my Custom NumberPicker. I got that the main view is actually an EditText, and since EditText have Compound drawables(DrawableLeft, DrawableRight etc.), I tried setting it, but when the NumberPicker actually shows up, it's absent from there. Is there anything else I can try to make it work?
My Current Code -
public class ViewPicker extends NumberPicker {
private int textSize = -1;
public ViewPicker(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
// TODO Auto-generated constructor stub
}
public ViewPicker(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
}
public ViewPicker(Context context) {
super(context);
// TODO Auto-generated constructor stub
}
@Override
public void addView(View child) {
super.addView(child);
updateView(child);
}
@Override
public void addView(View child, int index,
android.view.ViewGroup.LayoutParams params) {
super.addView(child, index, params);
updateView(child);
}
@Override
public void addView(View child, android.view.ViewGroup.LayoutParams params) {
super.addView(child, params);
updateView(child);
}
private void updateView(View view) {
if (view instanceof EditText) {
EditText editText = (EditText) view;
if (textSize > 0)
editText.setTextSize(textSize);
editText.setTextColor(Color.parseColor("#333333"));
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.ic_launcher);
BitmapDrawable draw = new BitmapDrawable(getResources(),bitmap);
editText.setCompoundDrawables(draw, null, null, null);
}
}
public int getTextSize() {
return textSize;
}
public void setTextSize(int textSize) {
this.textSize = textSize;
}
}
Let me know if there's any alternate method available for this.