Android:FrameLayout的ForeGround中的文本(包含谷歌地图)

时间:2015-02-20 13:01:08

标签: java android google-maps android-framelayout foreground

大家好

首先,抱歉我的英语不好

我首先让你到位:

我在Eclipse中使用Android的Java代码。

我的应用程序需要在片段中显示地图(Google Maps V2)以显示跑步者位置。地图显示已经实现。

这是我的问题:我使用FrameLayout元素,它包含我的地图,因此是整个页面,但是,我的目标是在地图上显示一个以底部为中心的文本框。我尝试在Foreground属性选项中使用来设置我的文本,但它不起作用(当到达地图页面时应用程序崩溃)。

这是我的代码fragment_carte:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/mapFrameLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:foreground="@id/txtViewCoureur"
    tools:context=".CarteFragment" >
</FrameLayout>

我无法发布图片以显示我想要的内容,因为它是我的第一篇文章

在问我的问题之前,我在这个论坛上尝试了很多解决方案

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

将地图封装在RelativeLayout内,并将其余控件封闭在FrameLayout中。这是我拥有的一个应用程序的示例:

<RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <fragment
            android:id="@+id/mapview"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_alignParentTop="true"
            class="MapFragment" />

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="@dimen/activity_vertical_margin"
            android:layout_marginLeft="@dimen/activity_horizontal_margin"
            android:layout_marginRight="@dimen/activity_horizontal_margin"
            android:layout_marginTop="@dimen/activity_vertical_margin" >

            <EditText
                android:id="@+id/mapsearchbox"
                android:layout_width="match_parent"
                android:layout_height="40dp"
                android:alpha="0.8"
                android:background="@android:color/white"
                android:hint="@string/map_search"
                android:imeOptions="actionSearch"
                android:inputType="text"
                android:paddingLeft="@dimen/activity_horizontal_margin"
                android:paddingRight="30dp"
                android:singleLine="true"
                android:textColor="@android:color/black" >
            </EditText>

            <Button
                android:id="@+id/mapsearchbtn
                android:layout_width="20dp"
                android:layout_height="20dp"
                android:layout_gravity="right|center_vertical"
                android:layout_margin="8dp"
                android:background="@android:drawable/ic_menu_close_clear_cancel" />
        </FrameLayout>
    </RelativeLayout>