高度MapFragment布局不起作用

时间:2013-12-30 12:08:08

标签: java android layout fragment

我正在构建一个包含两个tabhost(顶部和底部)的应用程序,在一个标签中,我想通过Google API放置Google Map。一切正常,但地图无法正确显示。你可以在这张照片中看得更清楚:

enter image description here

我的代码是:

fragment_mapa.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/map_container"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <fragment 
        android:id="@+id/map"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        class="com.google.android.gms.maps.SupportMapFragment"/>

</RelativeLayout>

MapaFragment.java

public class MapaFragment extends Fragment {
    public MapaFragment(){}

    public GoogleMap mapa;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
            Bundle savedInstanceState) {

        View rootView = inflater.inflate(R.layout.fragment_mapa, container, false);

        if (container != null) {
            container.removeAllViews();
        }

        GoogleMap map = ((SupportMapFragment) getActivity().getSupportFragmentManager()
                .findFragmentById(R.id.map)).getMap();

        ((MainActivity) getActivity()).setBar();

        //Asigno el nombre de la vista e integro tabhost-sliding
        ((MainActivity) getActivity()).setTitle("Mapa");
        ((MainActivity) getActivity()).integrationMenu();

        return rootView;

    }


    public void onDestroyView() {
        super.onDestroyView();
        Log.d("DESTROY", "onDestroyView");

        Fragment f = getActivity()
                .getSupportFragmentManager().findFragmentById(R.id.map);

        if (f != null) {
            getActivity().getSupportFragmentManager()
            .beginTransaction().remove(f).commit();
        }
    }
}

我的activity_main.xml包含两个tabhost和一个调用片段的framelayout:

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <!-- Estructura de los dos tabhost -->
    <RelativeLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/LinearLayout1"
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <!-- TABHOST SUPERIOR -->
        <RelativeLayout
            android:id="@+id/l1"
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0"
            android:gravity="right"
            android:layout_above="@+id/l2"
            android:layout_alignParentTop="true">

            <android.support.v4.app.FragmentTabHost
                android:id="@+id/tabhost_sup"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent">

                <LinearLayout
                    android:orientation="vertical"
                    android:layout_width="match_parent"
                    android:layout_height="match_parent">

                    <TabWidget
                        android:id="@android:id/tabs"
                        android:orientation="horizontal"
                        android:layout_width="fill_parent"
                        android:layout_height="50dip"
                        android:layout_weight="0"/>


                    <ScrollView 
                        android:layout_width="match_parent"
                        android:layout_height="match_parent"
                        android:background="#ffffff">
                        <FrameLayout
                            android:id="@android:id/tabcontent"
                            android:layout_width="match_parent"
                            android:layout_height="match_parent"
                            android:layout_weight="0"/>
                    </ScrollView>

                </LinearLayout>
            </android.support.v4.app.FragmentTabHost>
        </RelativeLayout>

        <!-- TABHOST INFERIOR -->
        <RelativeLayout
            android:id="@+id/l2"
            android:orientation="vertical"
            android:layout_width="match_parent"
            android:layout_height="50dip"
            android:layout_weight="1"
            android:gravity="right"
            android:layout_alignParentBottom="true"
            android:background="@android:color/background_light" >

            <android.support.v4.app.FragmentTabHost
                android:id="@android:id/tabhost"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent">

                <LinearLayout
                    android:id="@+id/RelativeLayout1"
                    android:orientation="vertical"
                    android:layout_width="fill_parent"
                    android:layout_height="fill_parent">

                    <FrameLayout
                        android:id="@android:id/tabcontent"
                        android:layout_width="0dp"
                        android:layout_height="0dp"
                        android:layout_weight="0"/>

                    <TabWidget
                        android:id="@android:id/tabs"
                        android:layout_width="fill_parent"
                        android:layout_height="wrap_content"
                        android:layout_weight="0" 
                        android:layout_marginBottom="0dp"/>

                </LinearLayout>
            </android.support.v4.app.FragmentTabHost>
        </RelativeLayout>
    </RelativeLayout>

    <!-- Listview to display slider menu -->
    <ListView
        android:id="@+id/list_slidermenu"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:choiceMode="singleChoice"
        android:divider="@color/list_divider"
        android:dividerHeight="1dp"       
        android:listSelector="@drawable/list_selector"
        android:background="@color/list_background"/>

    <ListView 
        android:id="@+id/right_drawer"
        android:layout_width="240dp"
        android:layout_height="match_parent"
        android:layout_gravity="end"
        android:choiceMode="singleChoice"
        android:divider="@color/list_divider"
        android:dividerHeight="1dp"       
        android:listSelector="@drawable/list_selector"
        android:background="@color/list_background"/>

</android.support.v4.widget.DrawerLayout>

4 个答案:

答案 0 :(得分:3)

解决方案(Hardik):

删除我的activity_main.xml中的scrollview,它运行良好。

答案 1 :(得分:2)

删除scrollview不是一个方便的解决方案。在android:FillViewPort="True" Scrollview layout中尝试使用{{1}}来解决所有需要滚动显示活动内容的屏幕的问题。希望如此帮助你!!

答案 2 :(得分:0)

使用android工具的hierarchyiviewer来检查布局值。

答案 3 :(得分:0)

未来: 如果你有一个ScrollView,那么元素必须指定它们的高度(水平滚动视图的宽度),否则它们应该具有什么高度,无限?

我还遇到了一个问题,即将地图片段放置在具有height = Wrap_Content,最小高度的相对布局中时发生了确切的事情。
设置一个恒定的高度解决了这个问题,同样的想法。