• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Android ImageView Visibility help

I have an ImageView object, x, loaded into my application. I want to toggle its visibility by clicking a button in the same activity. I have this code:


if(x.getVisibility() == INVISIBLE)
{
x.setVisibility(VISIBLE);
}

elseif(x.getVisibility() == VISIBLE)
{
x.setVisibility(INVISIBLE);
}


The default visibility setting is set to VISIBLE. When I click the button, the image won't vanish. Does anyone know how to fix this?
 
Hello,

In your Layout xml file you can give the image visibility with "android:visibility="invisible" "

And in your .java file

x.setVisibility(1); // it will be visible if set to 0 invisible


Good luck

Thanks
Vinay Guntaka
 
Back
Top Bottom