Example usage for android.widget FrameLayout requestTransparentRegion

List of usage examples for android.widget FrameLayout requestTransparentRegion

Introduction

In this page you can find the example usage for android.widget FrameLayout requestTransparentRegion.

Prototype

@Override
    public void requestTransparentRegion(View child) 

Source Link

Usage

From source file:com.yayandroid.utility.MapHelperFragment.java

/**
 * If progressView has also been set, then this view's visibility will be
 * set to visible when mapView has received. Otherwise it will not be used
 *///from   w w  w .jav a 2  s . co  m
public void setMapHost(FrameLayout mapHost) {
    this.mapHost = mapHost;
    if (mapHost != null) {
        mapHost.requestTransparentRegion(mapHost);
    }
}