ImageButton未显示在RelativeLayout中TextView的右侧

时间:2014-10-08 08:42:25

标签: android textview relativelayout imagebutton

我需要在 RelativeLayout 中的 TextView 右侧有一个 ImageButton ,我已尝试过此代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="fill_parent"
   android:layout_height="fill_parent"
   android:background="#CC000000">

<TextView
    android:id="@+id/quality"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_marginLeft="20dp"
    android:layout_marginBottom="20dp"
    android:textColor="#666666"
    android:text="@string/default_bitrate" />


       <ImageButton
    android:id="@+id/arrow"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@null"
    android:layout_toRightOf="@+id/quality"
    android:src="@drawable/ico_arrow" >
</ImageButton>

奇怪的是,ImageButton并没有显示出这种情况。我只能看到TextView。 哪里出错?

3 个答案:

答案 0 :(得分:2)

不要使TextView宽度与父级匹配,要么使用dp声明宽度,要么给出textview和imagebutton权重,以便它们都可以占用屏幕上的空间

答案 1 :(得分:1)

用这个改变你的xml:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#CC000000">

    <TextView
        android:id="@+id/quality"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_marginLeft="20dp"
        android:layout_marginBottom="20dp"
        android:textColor="#666666"
        android:text="@string/default_bitrate" />


    <ImageButton
        android:id="@+id/arrow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_toRightOf="@+id/quality"
        android:src="@drawable/ico_arrow" >
    </ImageButton>
</RelativeLayout>

答案 2 :(得分:1)

更改文本视图宽度以包装内容。将其设置为match_parent,textview将占据屏幕的整个宽度,因此您无法看到图像

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#CC000000" >

    <TextView
        android:id="@+id/quality"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_marginBottom="20dp"
        android:layout_marginLeft="20dp"
        android:text="@string/default_bitrate"
        android:textColor="#666666" />

     <ImageButton
        android:id="@+id/arrow"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/quality"
        android:layout_toRightOf="@+id/quality"
        android:background="@null"
        android:src="@drawable/ico_arrow" >
    </ImageButton>