Android - 遇到MapView和ScrollView的麻烦

时间:2013-02-07 15:40:39

标签: android android-mapview scrollview android-tabhost

现在我有一个非常讨厌的问题。我有一个ScrollView,在ScrollView里面我有一个TabHost,在其中一个标签中我有一个MapView,问题是那个配置MapView 1}}填满整个屏幕,省去标签,我想要的只是填充标签下方的空白区域!

我有这样的事情:

<ScrollView  xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context=".MainActivity" 
    android:id="@+id/scroll"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:fillViewport="true" > 
<LinearLayout
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" 
    android:background="@color/white" >

<TabHost ..... >

<MapView ..... />

</TabHost>

</LinearLayout>
</ScrollView>

如果我删除ScrollView一切正常,但删除它不是一个选项!

0 个答案:

没有答案