FragmentMap + вкладка ActionBar - PullRequest
       5

FragmentMap + вкладка ActionBar

5 голосов
/ 16 ноября 2011

Я пытался вставить MapView в ActionBar Tab, но я не смог решить проблему, даже погуглив.

Вот основное занятие:

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    //setContentView(R.layout.action_bar_tabs); 
    FragmentManager fm = getSupportFragmentManager();
    fm.beginTransaction().add(android.R.id.content, GigLoader.GigLoaderListFragment.newInstance()).commit();

    getSupportActionBar().setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

    ActionBar.Tab tab1 = getSupportActionBar().newTab().setText("Geo").setTabListener(this);
    ActionBar.Tab tab2 = getSupportActionBar().newTab().setText("Lista").setTabListener(this);
    getSupportActionBar().addTab(tab1);
    getSupportActionBar().addTab(tab2);
}

@Override
public void onTabSelected(Tab tab, FragmentTransaction ft) {
    if (tab.getPosition() == 0) {
        fm.beginTransaction().add(android.R.id.content, GigLoader.GigLoaderListFragment.newInstance()).commit();
    }
    else {
        fm.beginTransaction().add(android.R.id.content, GeoGigLoader.GeoGigMapFragment.newInstance()).commit();
    }

}

А вот код GeoGigLoader:

public class GeoGigLoader extends FragmentMapActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);       
}

public static final class GeoGigMapFragment extends Fragment {

    static GeoGigMapFragment newInstance() {
        GeoGigMapFragment map = new GeoGigMapFragment();
        return map;
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view = getActivity().getLayoutInflater().inflate(R.layout.map_gigs, container, false);
        MapView mapView = (MapView)view.findViewById(R.id.map_view);
        mapView.setBuiltInZoomControls(true);
        return view;
    }

}

@Override
protected boolean isRouteDisplayed() {
    return false;
}
}

FragmentMapActivity - это библиотека из actionbarsherlock.com, и эта библиотека расширяется от MapActivity, поэтому она должна работать.

Я получаю следующую ошибку:

FATAL EXCEPTION: main E/AndroidRuntime(954): android.view.InflateException: Binary XML file line #2: Error inflating class com.google.android.maps.MapView E/AndroidRuntime(954): at android.view.LayoutInflater.createView(LayoutInflater.java:513) E/AndroidRuntime(954): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:565)

Кто-нибудь знает, что происходит?

Ответы [ 4 ]

4 голосов
/ 10 января 2012

Решение состоит в том, чтобы начать просмотр карты в основном действии, которое должно расширить FragmentMapActivity. Затем ваш фрагмент может реализовать представление карты, получив его из основного действия.

Основная деятельность:

    mMapView = new MapView(YourActivity.this, MAPS_KEY);
    mMapView.setClickable(true);
    Exchanger.mMapView = mMapView;

Фрагмент:

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    mMapView = Exchanger.mMapView;
    return mMapView;
}

@Override
public void onDestroy() {
    if(mMapView != null) {
        NoSaveStateFrameLayout parentView = (NoSaveStateFrameLayout) mMapView.getParent();
        parentView.removeView(mMapView);
    }
    super.onDestroy();
}

Exchanger - это класс со статическим полем с отображением карты.

1 голос
/ 14 сентября 2012

Я решил эту проблему, изменив метод onCreateView :

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
        Bundle savedInstanceState) {
    if (view == null) {
        view = inflater.inflate(R.layout.fragment_geo, container, false);
    }
    return view;
}

, где view - это View object.

1 голос
/ 16 ноября 2011

Google Maps API для Android не поддерживает фрагменты прямо сейчас.

0 голосов
/ 17 апреля 2012

Я использую методы show / hide, чтобы избежать создания нескольких MapView в MapActivity:

public class TabFragment extends SherlockFragment {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        ActionBar actionBar = getSherlockActivity().getSupportActionBar();
        actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

        actionBar.addTab(actionBar
            .newTab()
            .setText("List")
            .setTabListener(
                new TabListener(((FragmentActivity) getActivity()), "listFragment", ListFragment.class)));

        actionBar.addTab(actionBar
            .newTab()
            .setText("Map")
            .setTabListener(
                new TabListener(((FragmentActivity) getActivity()), "MapFragment", MapFragment.class)));
    }

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        return inflater.inflate(R.layout.tab_view, container, false);
    }

    public static class TabListener implements ActionBar.TabListener {
        private final FragmentActivity activity;
        private final String tag;
        private final Class clazz;
        private final Bundle args;
        private Fragment fragment;

        public TabListener(FragmentActivity activity, String tag, Class clz) {
            this(activity, tag, clz, null);
        }

        public TabListener(FragmentActivity activity, String tag, Class clz, Bundle args) {
            this.activity = activity;
            this.tag = tag;
            this.clazz = clz;
            this.args = args;

            // Check to see if we already have a fragment for this tab, probably from a previously saved state. If so,
            // hide it, because our initial state is that a tab isn't shown.
            fragment = activity.getSupportFragmentManager().findFragmentByTag(tag);
            if (fragment != null && !fragment.isHidden()) {
                FragmentTransaction ft = activity.getSupportFragmentManager().beginTransaction();
                ft.hide(fragment);
                ft.commit();
            }
        }

        @Override
        public void onTabSelected(Tab tab, FragmentTransaction ft) {
            if (fragment == null) {
                fragment = Fragment.instantiate(activity, clazz.getName(), args);
                ft.add(R.id.container_fragment, fragment, tag);
            } else {
                ft.show(fragment);
            }
        }

        @Override
        public void onTabUnselected(Tab tab, FragmentTransaction ft) {
            if (fragment != null) {
                ft.hide(fragment);
            }
        }

        @Override
        public void onTabReselected(Tab tab, FragmentTransaction ft) {
        }
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...