Skip to content Skip to sidebar Skip to footer

Issue With Nosavestateframelayout

I am developing one application in whcih i Have integerate Sherlock Actionbar with Fragment.there are two tab, First is Map and Second is For Listing. For First Map tab I want to P

Solution 1:

Based on the link you provided, is there a reason you went away from their getView() method?

@Override
public MapView getView() {
    NoSaveStateFrameLayout wrapper = (NoSaveStateFrameLayout)super.getView();
    return (MapView)((wrapper != null) ? wrapper.getChildAt(0) : null);
}

Post a Comment for "Issue With Nosavestateframelayout"