- visible
- true to notify the system that the activity wishes to be visible behind other translucent activities, false to indicate otherwise. Resources must be released when passing false to this method.
Documentation for this section has not yet been entered.
Activities that want to remain visible behind a translucent activity above them must call this method anytime between the start of Activity.OnResume and the return from Activity.OnPause. If this call is successful then the activity will remain visible after Activity.OnPause is called, and is allowed to continue playing media in the background.
The actions of this call are reset each time that this activity is brought to the front. That is, every time Activity.OnResume is called the activity will be assumed to not have requested visible behind. Therefore, if you want this activity to continue to be visible in the background you must call this method again.
Only fullscreen opaque activities may make this call. I.e. this call is a nop for dialog and translucent activities.
Under all circumstances, the activity must stop playing and release resources prior to or within a call to Activity.OnVisibleBehindCanceled or if this call returns false.
False will be returned any time this method is called between the return of onPause and the next call to onResume.