Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to create a button like the ImageButton. And faced with a vexing problem. After applying setImageBitmap, with ImageView nothing happens. Bitmap itself contains image(not null). Moreover, the same function(ImageManager.getImage("menu", id)), I use elsewhere in the program, which have to contain the Bitmap in ListView Adapter, works fine.

for( int i = 0; i < MenuArray.size(); i++)
        {
            View buttonView = MainActivity.getLayoutInflater().inflate(R.layout.top_button, MenuLayout, false);
            buttons[i] = (ImageView) buttonView.findViewById(R.id.imageForeground);
            ImageView imageBackground = (ImageView) buttonView.findViewById(R.id.imageBackground);
            imageBackground.setImageBitmap(ImageManager.getImage("menu", MenuArray.get(i).id));

            MenuLayout.addView(buttonView);
        }

XML:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="40dp"
    android:layout_height="40dp"
    android:layout_margin="2dp" >
    <ImageView
        android:id="@+id/imageBackground"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/cart_item" />

    <ImageView
        android:id="@+id/imageForeground"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/button_selector" />
</RelativeLayout>
share|improve this question
"nothing happens" meaning the ImageView still displays the src image it originally had from the XML definition or it displays nothing? – Devunwired Jan 20 at 5:17
@Devunwired Nothing displays. Completely transparent ImageView – ftp27 Jan 20 at 5:43
That means setImageBitmap() did something because it cleared out the default image source. Your certain you verified that the result from your getImage() method at that point is not null? If you DON'T call setImageBitmap() does the default image display? If not, it may be a layout problem during inflation. – Devunwired Jan 20 at 5:48
If I DON'T call setImageBitmap(), the picture is displayed by default. I also tried to set the image through setImageDrawable(), pointing to an image from the drawable and everything worked. – ftp27 Jan 20 at 6:36
That definitely sounds like the Bitmap being returned from the ImageManager at that time is either null or empty, even if at some time later it properly returns an image. – Devunwired Jan 20 at 21:47
show 1 more comment

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.