在Android中以编程方式实现android:src =“@ drawable / image”

时间:2011-09-08 10:50:13

标签: android android-widget android-imageview android-button

我正在尝试在图像按钮上设置前景图像。经过一些研究,我发现了这个代码示例:

<ImageButton android:text="Button" android:id="@+id/button1"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:src="@drawable/icon"/>

我的查询是如何在代码中实际实现android:src。

6 个答案:

答案 0 :(得分:94)

试试这个:

ImageButton btn = (ImageButton)findViewById(R.id.button1);
btn.setImageResource(R.drawable.newimage);

其中newimage drawable 文件夹中的图片名称。

<强> EDITED
试试这个:

ImageButton btn = (ImageButton)findViewById(R.id.button1);
btn.setImageBitmap(bm);

其中 bm 是从服务器中提取的位图。

再次编辑
我看到你收到了Drawable;好吧,这样做:

normalImage = Drawable.createFromStream(code);
Bitmap bm = ((BitmapDrawable)normalImage).getBitmap();
ImageButton btn = (ImageButton)findViewById(R.id.button1);
btn.setImageBitmap(bm);

答案 1 :(得分:11)

以下是以编程方式** image:src 或通过代码设置 ImageButton 对我有用的作用:

1.检索可绘制的图像。

Drawable tempImage = getResources().getDrawable(R.drawable.my_image);

2.获取视图。

ImageButton tempButton = (ImageButton)findViewById(R.id.my_image_button);

3.设置视图的图像。

tempButton.setImageDrawable(tempImage);

希望这也适合你!

答案 2 :(得分:3)

试试这个::

ImageButton tran_btn_skip;

tran_btn_skip = (ImageButton) findViewById(R.id.btn);
    try {
        Bitmap bitmap_skip = BitmapFactory.decodeStream((InputStream) new URL(
                "http://233.129.115.55/MRESC/images/test/skip.png")
                .getContent());
        tran_btn_skip.setImageBitmap(bitmap_skip);
    } catch (Exception e) {
    }

答案 3 :(得分:2)

希望这会对你有所帮助

ImageButton button1=(ImageButton)findViewById(R.id.button1);       
button1.setImageResource(R.drawable.icon);

答案 4 :(得分:1)

另一个简短的变种

views.setImageViewResource(R.id.button1, R.drawable.newbutton);

答案 5 :(得分:0)

我知道这是一个老问题,但是对于将来的搜索...... 我相信你要找的是:

imgButton.setImageDrawable(drawable);