Search This Blog

Friday, June 24, 2016

EditText - Thêm icon vào bên trái EditText

// Thêm icon vào bên trái edittextDrawable img = getApplicationContext().getResources().getDrawable( R.drawable.addcart );
img.setBounds(0, 0, 30, 30);
edtNhapEmailTrangDangKy.setCompoundDrawables(img, null, null, null);

TextView textView = (TextView) findViewById(R.id.myTxtView);
textView.setCompoundDrawablesWithIntrinsicBounds(R.drawable.icon, 0, 0, 0);

No comments:

Post a Comment