class com.google.ads.studio.configurable.ProxyConfigurable
The Proxy Configurable class is required in all child files that make Layout API calls. This class proxies all APIs to the concrete parent Layout.
ProxyConfigurable needs to be imported before a Layout API call is made. In practical use, the Proxy Layout will appear to dispatch the same events as the parent Layout.
Please refer to Configurable reference for the full list of methods.
The following code illustrates how to invoke a Configurable API command
from within a child file:
import com.google.ads.studio.configurable.ProxyConfigurable; ProxyConfigurable.getInstance().register("Image", this);
Static Methods
ProxyConfigurable.getInstance()
:
ProxyConfigurable
Gets the singleton instance of the real Configurable.