TextView is not displaying on the top of the screen
这是我的代码
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".MainActivity" >
<TextView
android:id="@+id/distance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" />
<RadioGroup
android:id="@+id/rg_modes"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/rb_driving"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="@string/str_rb_driving" />
<RadioButton
android:id="@+id/rb_walking"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/str_rb_walking" />
<RadioButton
android:id="@+id/tv_distance_time"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="distance" />
</RadioGroup>
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_above="@id/rg_modes" />
</RelativeLayout>
答案 0 :(得分:3)
将android:layout_below="@+id/distance"
添加为属性Fragment
xml,如下所示......
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_above="@id/rg_modes"
android:layout_below="@+id/distance" />
答案 1 :(得分:0)
添加layout_below
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_above="@id/rg_modes"
android:layout_below="@id/distance" />
答案 2 :(得分:0)
将mapview放在mapview之后
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_above="@id/rg_modes" />
<TextView
android:id="@+id/distance"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:text="Distaceee" />
答案 3 :(得分:0)
确保在textview
上正确地在运行时分配一些文本,其他明智的文本视图的数据将不会显示..
任何方式,我们假设textview
的数据在运行时正常运行..
在这种情况下<RadioGroup>
替换此行
android:layout_alignParentBottom="true"
with below one
android:layout_below="@+id/distance"
&安培;在<fragment>
{高度wrap_content
代替match_parent
答案 4 :(得分:0)
添加:
android:layout_below="@id/distance"
你的片段与id android:id =“@ + id / map”