layout_width - table layout android
Android: colocar ImageView en superposiciĆ³n entre diseƱos (2)
Esto hará lo que quiera, ya sea con una imagen de altura fija o calculada programáticamente.
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<RelativeLayout
android:id="@+id/layoutTop"
android:layout_width="match_parent"
android:layout_height="200dp" >
</RelativeLayout>
<RelativeLayout
android:id="@+id/layoutBottom"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_alignParentBottom="true"
android:layout_below="@id/layoutTop" >
</RelativeLayout>
<ImageView
android:id="@+id/overlapImage"
android:layout_width="wrap_content"
android:layout_height="40dp"
android:layout_above="@id/layoutBottom"
android:layout_centerHorizontal="true"
android:layout_marginBottom="-20dp" <!-- This should be always half the height, can also be calculated and added programtically -->
android:adjustViewBounds="true"
android:src="@drawable/ic_launcher" />
</RelativeLayout>
Estoy tratando de colocar un ImageView
en el punto de superposición entre dos diseños. En la imagen siguiente, mi objetivo sería colocar ImageView
donde está el cuadrado blanco. NOTA: El punto de superposición no necesariamente se centrará verticalmente como se muestra a continuación
¿Es esto posible en XML?
Mi única conjetura en este momento es hacer esto en el código mismo.
EDIT 3/08/2016: como referencia, creo que ConstraintLayouts
puede ser la mejor solución futura para este tipo de problemas http://tools.android.com/tech-docs/layout-editor
Intenta de esta manera, espero que esto te ayude a resolver tu problema.
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1">
</LinearLayout>
</LinearLayout>
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_launcher"
android:adjustViewBounds="true"
android:layout_gravity="center"/>
</FrameLayout>