覆盖地图的Android Studio UI PNG图像

时间:2016-06-24 18:29:03

标签: android xml android-layout android-studio

我试图在我的应用程序底部添加一个摄像头符号(如Snapchat)覆盖地图,但似乎无法使其正常工作。图层和图像按钮位于包含地图对象的图层下方。如果我减少“地图层”的高度它可以工作,但是自然地,在相机符号两侧的中心有一个白色的空白。

有什么建议吗?这是一张图片和布局文件,我包含了整件事,以防我在早期犯了一些错误导致问题。非常感谢所有帮助。

Image

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:weightSum="1"
        android:background="#165d38">

        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:layout_weight="1"
            android:gravity="center_vertical">

            <ImageButton
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/imageButton2"
                android:src="@drawable/mark"
                android:background="#00000000" />

            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:text="Swoop"
                android:id="@+id/textView2"
                android:textSize="18dp"
                android:gravity="center_horizontal|right" />

        </LinearLayout>

        <ImageButton
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:id="@+id/imageButton3"
            android:src="@drawable/mr_ic_settings_light"
            android:layout_weight="0"
            android:backgroundTint="#00000000" />

    </LinearLayout>

</LinearLayout>

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="fill_parent">

    <fragment tools:context="net.net16.swooptest.demomaps.MapsActivity"
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:map="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:id="@+id/map"
        android:name="com.google.android.gms.maps.SupportMapFragment"
        android:layout_width="fill_parent"
        android:layout_height="match_parent" />

</LinearLayout>

<LinearLayout
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="bottom"
    android:baselineAligned="false"
    android:background="#00000000">

//THIS IS THE CAMERA BUTTON
    <ImageButton
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/imageButton4"
        android:src="@drawable/abc_btn_radio_to_on_mtrl_015"
        android:background="#00000000"
        android:clickable="true"
        android:layout_weight="1"
        android:layout_gravity="center_horizontal" />
</LinearLayout>

2 个答案:

答案 0 :(得分:0)

我找到了一个答案,可能可以帮助您解决问题,这里是链接 https://stackoverflow.com/a/2386929/4957589

答案 1 :(得分:0)

尝试使用android:elevation属性,因此按钮将位于相对布局的地图上方