1

有没有办法通过代码改变 MapFragment 的高度?请看 Layout 文件。`

<FrameLayout
    android:id="@+id/content_frame"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

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

    <ListView
        android:id="@+id/feedList"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:cacheColorHint="#00000000"
        android:divider="@color/DarkGray"
        android:dividerHeight="4dp"
        android:scrollbars="none" >
    </ListView>
</FrameLayout>

<ListView
    android:id="@+id/settings"
    android:layout_width="240dp"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:background="#111"
    android:choiceMode="singleChoice"
    android:divider="@android:color/transparent"
    android:dividerHeight="0dp" />

`

我有一个 ListView 的标题视图(在 FrameLayout 中显示)并通过代码添加它。当用户单击标题视图时,我想将 MapFragment 高度设置为 MatchParent。我希望你有这个问题,如果你需要任何澄清,请发表评论。提前致谢。

4

1 回答 1

0

您也可以将地图片段(也列表)定义为框架布局并在代码中替换为您的片段,否则您无法更改片段的大小,它将是静态的。

于 2013-11-26T09:48:55.090 回答