2

我在 LinearLayout 中有一个按钮,我在 XML 中分配了一个 drawableLeft,如下所示:

<Button android:id="@+id/button_news"
    style="@style/main_button"
    android:drawableLeft="@drawable/news"
    android:text="@string/button_news" />

这工作正常,按钮看起来像预期的那样。

在此处输入图像描述

我想以编程方式更改图像以显示可用新闻的数量。这是我的代码:

private void updateNewsButton()
{
    // load the original bitmap and draw the number of news on it to show it
    Paint paint = new Paint();
    paint.setColor( Statics.COLOR_GENERAL_HIGHLIGHT );
    paint.setTextAlign( Paint.Align.CENTER );
    paint.setTextSize( 24 );
    paint.setTypeface( Typeface.defaultFromStyle( Typeface.BOLD ) );
    paint.setAntiAlias( true );

    Bitmap bmp = BitmapFactory.decodeResource( getResources(), R.drawable.news ).copy( Config.ARGB_8888, true );
    Canvas canvas = new Canvas( bmp );
    int count = 5;    // TODO: load from database
    canvas.drawText( Integer.toString( count ), bmp.getWidth() / 2, bmp.getHeight() / 2, paint );
    Drawable d = new BitmapDrawable( bmp );
    _btnNews.setCompoundDrawables( d, null, null, null );
}

运行上述代码后,我的按钮上的图像就消失了。我看不出我做错了什么,因为我以前对 ImageView 使用过类似的技术。除了最后两行之外,所有内容都相同。对于 ImageView 我只是直接分配位图:

...
imageView.setImageBitmap( bmp );

我这里需要用到drawableLeft,因为还有几个其他的botton,所以不能再用ImageView了。

知道我的代码有什么问题吗?

4

1 回答 1

1

要以编程方式将图像放在左侧的按钮中,请使用以下代码

Button button = (Button) findViewById(R.id.mybutton);   
button.setCompoundDrawablesWithIntrinsicBounds(R.drawable.img, 0, 0, 0);

位置是这样的(左,上,右,下)

于 2013-03-27T04:02:54.807 回答