Relative Layout squishing child views

425 Views Asked by At

I have an ImageView and TextView inside a RelativeLayout to move them all around as a group that sticks together. It looks fine in the Graphical Layout inside Eclipse.

(The blue shows the outline for the RelativeLayout):

enter image description here

However when I run the app, the child views appear squished toghether or on top of each other. The ImageView doesn't even show anymore. I'm not sure why this occurs?

enter image description here

XML

<RelativeLayout
    android:id="@+id/frameB"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/squashcourt"
    android:layout_alignLeft="@+id/squashcourt"
    android:layout_marginBottom="8dp"
    android:layout_marginLeft="8dp"
    android:clickable="true"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/tv_aboveB"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_margin="3dp"
        android:clickable="true"
        android:text="Robin"
        android:textAllCaps="true"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:textColor="@color/Red"
        android:textStyle="bold" />

    <ImageView
        android:id="@+id/btn_B"
        android:layout_width="115dp"
        android:layout_height="115dp"
        android:layout_below="@+id/tv_aboveB"
        android:layout_centerHorizontal="true"
        android:layout_margin="3dp"
        android:clickable="true"
        android:scaleType="fitXY"
        android:src="@drawable/b_left" />

</RelativeLayout>

I'm using a Samsung S4. Can anyone suggest something? Thanks in advance!

1

There are 1 best solutions below

0
On BEST ANSWER

You can Use simply TextView with bottom drawable .

 <TextView
        android:id="@+id/tv_aboveB"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:clickable="true"
        android:text="Robin"
        android:drawableBottom="@drawable/ic_launcher"
        android:textAllCaps="true"
        android:textAppearance="?android:attr/textAppearanceSmall"
        android:textColor="#ff0000"
        android:textStyle="bold" />

Now you can move the TextView any where on the screen.