现在我有一个非常讨厌的问题。我有一个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
一切正常,但删除它不是一个选项!