gpt4 book ai didi

java - 如何在 map View 上放置一个透明按钮?

转载 作者:行者123 更新时间:2023-12-01 15:15:52 24 4
gpt4 key购买 nike

我想在 map View 上放置透明( map 在其下方可见)按钮?我怎样才能实现这一目标?

最佳答案

尝试在按钮上使用它android:background="@null"或android:background="@android:颜色/透明"编辑:放置在使用相对布局:

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

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<com.google.android.maps.MapView android:id="@+id/google_maps"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="@string/maps_key"/>
<Button android:id="@+id/googlemaps_select_location"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:text="Select"/>
</RelativeLayout>

关于java - 如何在 map View 上放置一个透明按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11626182/

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