Edittext背景图片

时间:2012-04-15 12:54:34

标签: android

当我使用“setBackgroundResource”设置editText的背景时,一切正常。当我使用具有相同图像的“setBackgroundDrawable”时,它最终会被拉伸......

左边是“setBackgroundResource”的结果,右边是“setBackgroundDrawable”:

http://i.stack.imgur.com/yQi5n.jpg (对不起,我不允许在这里发布图片......)

代码:

View chips = EditChipsActivity.this.findViewById(mydID);
chips.setBackgroundResource(R.drawable.chips_filter);

VS:

View chips = EditChipsActivity.this.findViewById(mydID);
Bitmap bkg = ((BitmapDrawable) getResources().getDrawable(R.drawable.chips_filter)).getBitmap();
BitmapDrawable bkg = new BitmapDrawable(bkg);
chips.setBackgroundDrawable(bkg);

(我必须创建自己的位图并使用setBackgroundDrawable,因为我想在背景上绘制)

1 个答案:

答案 0 :(得分:1)

试试这个:

View chips = (EditText) findViewById(R.id.editText1);
    Bitmap bkg = ((BitmapDrawable) getResources().getDrawable(R.drawable.chips_filter)).getBitmap();
    BitmapDrawable bkgbt = new BitmapDrawable(getResources(),bkg);
    chips.setBackgroundDrawable((Drawable) bkgbt);

你的EditText:

<EditText
        android:id="@+id/editText1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >
    </EditText>

如果这样做你想要的话,我不是......