[android-developers] Re: How to remove black topbar on activity animation?

2012-08-12 Thread bbbill
If you use Android 3.n and higher, it might help googeling for how to hide the ActionBar (instead of TitleBar). The ActionBar is appearently loaded with every UI of the recent versions, even if you do not define it within your code. Am Samstag, 11. August 2012 23:41:51 UTC+2 schrieb user123: > >

[android-developers] Re: view elements unintenionally blinking

2012-08-09 Thread bbbill
if(Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB){ ActionBar actionbar; actionbar = getActionBar(); actionbar.hide(); } ... } Am Mittwoch, 8. August 2012 19:19:40 UTC+2 schrieb bbbill: > > Hi All, > on my Android Tab (TF 101g with keyboard dock, A

[android-developers] view elements unintenionally blinking

2012-08-08 Thread bbbill
Hi All, on my Android Tab (TF 101g with keyboard dock, Android 4.03) I observe some strange blinking I cannot explane. The whole screen is being controlled by a Relative Layout containing another Realive Layout with some view elements on top position, followed by a SurfaceView with a grafic canv

[android-developers] resume surfaceview after onDetachedFromWindow()

2012-05-04 Thread bbbill
Hi All, few day ago I already posted this topic/question, but for some reason it did not appear in the list. Can anybody help me with information how to return to a surfaceview (still present on the Activity stack) that had been detached from before, or at least resume the holding main activity?