سؤال

I am developing an app that retrieves contact image from contact database and set it to EditText as drawableLeft along with contact name

I am able to retrieve name as well as contact image as bitmap, but not able to set it as drawableLeft

هل كانت مفيدة؟

المحلول 2

Instead of setting bitmap on textview use ImageView

نصائح أخرى

Try this code:

BitmapDrawable drawableLeft = new BitmapDrawable(getResources(), yourBitmap);
mYourEditText.setCompoundDrawablesWithIntrinsicBounds(drawableLeft, null, null, null);
مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top