Most visited

Recently visited

Added in API level 1

MutableContextWrapper

public class MutableContextWrapper
extends ContextWrapper

java.lang.Object
   ↳ android.content.Context
     ↳ android.content.ContextWrapper
       ↳ android.content.MutableContextWrapper


Special version of ContextWrapper that allows the base context to be modified after it is initially set.

Summary

Inherited constants

From class android.content.Context

Public constructors

MutableContextWrapper(Context base)

Public methods

void setBaseContext(Context base)

Change the base context for this ContextWrapper.

Inherited methods

From class android.content.ContextWrapper
From class android.content.Context
From class java.lang.Object

Public constructors

MutableContextWrapper

Added in API level 1
MutableContextWrapper (Context base)

Parameters
base Context

Public methods

setBaseContext

Added in API level 1
void setBaseContext (Context base)

Change the base context for this ContextWrapper. All calls will then be delegated to the base context. Unlike ContextWrapper, the base context can be changed even after one is already set.

Parameters
base Context: The new base context for this wrapper.

Hooray!