gpt4 book ai didi

android - 更改可绘制对象并将其设置为 drawableLeft

转载 作者:行者123 更新时间:2023-11-29 02:05:48 25 4
gpt4 key购买 nike

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

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

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

enter image description here

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

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,因为还有一些其他的按钮,所以我不能再使用 ImageView。

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

最佳答案

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

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

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

关于android - 更改可绘制对象并将其设置为 drawableLeft,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10112118/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com