[android-developers] Re: how to remove the image displayed in ImageView

2009-01-22 Thread cindy
I could not find any API to remove the image displayed in ImageVIew. Help! On Jan 22, 11:16 am, cindy wrote: > Hi > > How can we removed image displayed in Imageview? > > Thanks! > > Cindy --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Re: how to remove the image displayed in ImageView

2009-01-23 Thread mathiastck
You could try setImageBitmap passing a null. On Jan 22, 9:31 pm, cindy wrote: > I could not find any API to remove the image displayed in ImageVIew. > Help! > > On Jan 22, 11:16 am, cindy wrote: > > > Hi > > > How can we removed image displayed in Imageview? > > > Thanks! > > > Cindy > > --~--

[android-developers] Re: how to remove the image displayed in ImageView

2009-01-23 Thread Sundog
Haven't tried SetImageBitmap to null, but I know SetImageResource to null does not work. I've been meaning to ask this question, too. On Jan 23, 1:28 pm, mathiastck wrote: > You could try  setImageBitmap passing a null. > > On Jan 22, 9:31 pm, cindy wrote: > > > > > I could not find any API to

[android-developers] Re: how to remove the image displayed in ImageView

2009-01-23 Thread jeffro
Not sure what you're trying to accomplish, but you can use View.setVisibility(View.GONE or View.INVISIBLE) to not display the image. On Jan 23, 12:55 pm, Sundog wrote: > Haven't tried SetImageBitmap to null, but I know SetImageResource to > null does not work. > > I've been meaning to ask this q

[android-developers] Re: how to remove the image displayed in ImageView

2009-01-26 Thread cindy
I displayed a image in Imageview. Then I click my delete button. I am going to delete the file. At the same time I need to delete the image shown in imageview. On Jan 23, 3:23 pm, jeffro wrote: > Not sure what you're trying to accomplish, but you can use > View.setVisibility(View.GONE or View.IN