Re: [android-developers] Redrawing a view when the transparent activity closes

2011-02-09 Thread astegic astegic
Or you can try view.requestlayout On Wed, Feb 9, 2011 at 4:58 PM, Adriano B. Godinho adri...@godinho.eng.brwrote: Hi, Did you try to call View.invalidate? On Wed, Feb 9, 2011 at 9:02 AM, vivin joy joy.viv...@gmail.com wrote: Hi All, i have an Activity called MainActivity. It has a

[android-developers] TableLyaout getting invalidated

2011-02-04 Thread astegic astegic
HI, I am using a TableLayout in my activity but because of some reason it is getting Invalidated (columns of table layout are falling towards one side of the screen) and I have to call table.requestlayout() to make it look fine again and again. I found a scenario in which my TableLayout is

[android-developers] TableLayout getting invalidated

2011-02-04 Thread astegic astegic
HI, I am using a TableLayout in my activity but because of some reason it is getting Invalidated (columns of table layout are falling towards one side of the screen) and I have to call table.requestlayout() to make it look fine again and again. I found a scenario in which my TableLayout is

Re: [android-developers] Re: Can't properly stop a thread

2011-02-03 Thread astegic astegic
Kostya, Please clear my following doubts. Is it really necessary to make my background thread stop all the time when my Application is not getting shown. Cant we make my our Application smart enough so that it should not do anything when our Application is not in the context. Like in above