gpt4 book ai didi

android - 为 Android 应用程序嵌入谷歌地图

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:17:45 24 4
gpt4 key购买 nike

您好,我想在我的应用程序中使用谷歌地图,但我也想为其创建自己的页脚菜单。所以它应该看起来像页眉 - 谷歌地图 - 从上到下的页脚。我尝试添加 relativeLayout 和 linearLayout 以嵌入到 mapview 但我没有实现。

你能举个例子或者说说方法吗?

最佳答案

阅读布局权重 - http://developer.android.com/guide/topics/ui/layout-objects.html

如果您有三个 View 并将权重设置为 0、1 和 0 - 那么中间的 View 将调整大小,其他两个将保持固定大小,因此这是将页眉和页脚添加到调整大小的 View 的一个很好的解决方案。试试这个模板代码,注意布局权重是如何设置的:

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<!-- Header -->
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
/>

<!-- Map -->
<MapView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
....
/>

<!-- Footer, or another embedded Layout -->
<ImageView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
/>
</LinearLayout>

关于android - 为 Android 应用程序嵌入谷歌地图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5403379/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com