我有一个textview。我已经设置了textview的setCompoundDrawablesWithIntrinsicBounds。之后,当我将文本设置到文本字段时,文本向右移动。如何将文本带到中间。请帮助我。
提前感谢您的帮助。
Drawable d =new BitmapDrawable(resizedbitmap);
description.setCompoundDrawablesWithIntrinsicBounds(d,null,null,null);
description.setText("hello");
description.setTypeface(Typeface.DEFAULT_BOLD);
description.setGravity(Gravity.CENTER);