No sé si ha quedado claro... yo había hecho esto, pero el scroll se sigue haciendo en toooda la pantalla y la imagen pisa la parte de abajo, de modo que si haces el scroll entero, la parte de abajo del todo nunca la lees porque está la imagen encima:
Código:
también he intentado poniendo el layout del banner de este modo:<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" > <ScrollView android:id="@+id/scroll" android:layout_width="wrap_content" android:layout_height="wrap_content" > <RelativeLayout android:layout_width="wrap_content" android:layout_height="wrap_content" > <TextView android:id="@+id/titulo" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/imagen" android:layout_marginLeft="5dp" android:text="@string/titulo1" /> <TextView android:id="@+id/cuerpo" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/antetitulo" android:layout_marginLeft="5dp" android:text="@string/cuerpo" /> </RelativeLayout> </ScrollView> <RelativeLayout android:id="@+id/banner" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" > </RelativeLayout> </RelativeLayout>
Código:
pero así ni aparece la imagen... <RelativeLayout android:id="@+id/banner" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/scroll" > </RelativeLayout>
Alguien me puede echar un cable??
Gracias