Android。固定片段在所有屏幕上的高度
Android. Fix the height of a fragment on all screens
我有这个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>
我想要这个结果。
在 Nexus 4 和 samsung S5 中是可以的。但小屏不行。
我认为错误在于:
<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" />
具体在高度上,我没修好
谢谢。
使用布局将视图分成更小的部分,然后移除 130dp 高度并改用粗细。
我有这个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>
我想要这个结果。
在 Nexus 4 和 samsung S5 中是可以的。但小屏不行。
我认为错误在于:
<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" />
具体在高度上,我没修好
谢谢。
使用布局将视图分成更小的部分,然后移除 130dp 高度并改用粗细。