Android系统。修复所有屏幕上片段的高度

时间:2015-03-09 13:13:14

标签: android fragment android-linearlayout relativelayout

我有这个xml:

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

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/infoinstalacion_fragment1_relative_imagen_poli"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/Pink">

    <ImageView
   android:id="@+id/infoinstalacion_fragment1_imgfoto"
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:scaleType="fitXY"
   android:src="@drawable/pol_alza" />

<TextView
   android:id="@+id/infoinstalacion_fragment1_nombre_encima_de_imagen"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_alignParentTop="true"
   android:text="ESTO ES EL NOMBRE DEL POLIDEPORTIVO"/>

     <fragment
   android:id="@+id/infoinstalacion_fragment1_map"
   android:layout_width="match_parent"
   android:layout_height="130dp"
   android:layout_below="@+id/infoinstalacion_fragment1_imgfoto"
   class="com.google.android.gms.maps.SupportMapFragment" />

<TextView
   android:id="@+id/infoinstalacion_fragment1_titulo_direccion"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_below="@id/infoinstalacion_fragment1_map"
   android:text="@string/titulo_direccion"
   android:textSize="15dp"
   android:layout_marginLeft="20dp"
   android:layout_marginTop="5dp"/>

    <TextView
   android:id="@+id/infoinstalacion_fragment1_tv_direccion"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_below="@id/infoinstalacion_fragment1_titulo_direccion"
   android:text="Direccion"
   android:textSize="15dp"
   android:layout_marginLeft="20dp"
   android:layout_marginTop="5dp"/>

 <TextView
   android:id="@+id/infoinstalacion_fragment1_titulo_telefono"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_below="@id/infoinstalacion_fragment1_tv_direccion"
   android:text="@string/titulo_telefono"
   android:textSize="15dp"
   android:layout_marginLeft="20dp"
   android:layout_marginTop="5dp"/>

<TextView
   android:id="@+id/infoinstalacion_fragment1_tv_telefono"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_below="@id/infoinstalacion_fragment1_titulo_telefono"
   android:text="Telefono"
   android:textSize="15dp"
   android:layout_marginLeft="20dp"
   android:layout_marginTop="5dp"/>

<TextView
   android:id="@+id/infoinstalacion_fragment1_titulo_email"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_below="@id/infoinstalacion_fragment1_tv_telefono"
   android:text="@string/titulo_email"
   android:textSize="15dp"
   android:layout_marginLeft="20dp"
   android:layout_marginTop="5dp"/>

<TextView
   android:id="@+id/infoinstalacion_fragment1_tv_nombre"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_below="@id/infoinstalacion_fragment1_titulo_email"
   android:text="Nombre"
   android:textSize="15dp"
   android:layout_marginLeft="20dp"
   android:layout_marginTop="5dp"
   android:layout_marginBottom="5dp"/>

   </RelativeLayout>

我想要这个结果。

enter image description here

在Nexus 4和三星S5中,没关系。但小屏幕没有。

enter image description here

在我看来,错误在于:

 <fragment
android:id="@+id/infoinstalacion_fragment1_map"
android:layout_width="match_parent"
android:layout_height="130dp"
android:layout_below="@+id/infoinstalacion_fragment1_imgfoto"
class="com.google.android.gms.maps.SupportMapFragment" />

特别是在高处,但我没有解决它。

谢谢。

1 个答案:

答案 0 :(得分:1)

使用布局将视图拆分为较小的部分,然后移除130dp高度并改为使用重量。