谷歌地图应用程序中的中心标题

时间:2015-11-03 20:22:15

标签: android google-maps

我是android开发的新手。我有一个谷歌地图应用程序,我想以地图的标题为中心。 enter image description here

我找到了标题“嗨!”在string.xml中定义为

 <string name="title_activity_maps">Hi!</string>

但我在布局中找不到它。所以我不确定在哪里可以将代码放在这个标题的中心位置。这是我的activity_maps.xml

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">

<fragment
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    class="com.google.android.gms.maps.SupportMapFragment"
    android:layout_above="@+id/latlongLocation" />

<TextView
    android:id="@+id/latlongLocation"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="bottom"
    android:layout_alignParentBottom="true"
    android:paddingTop="80dp"
    android:paddingBottom="5dp"
    android:paddingLeft="5dp"
    android:paddingRight="5dp"
    android:hint="@string/reminder"/>
</RelativeLayout>

0 个答案:

没有答案