0

最后一个按钮图像乱序

<RelativeLayout
    android:id="@+id/relativeLayout1"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:text="Admissions"
        android:layout_marginLeft="14dp"
        android:textColor="#33b5e5"         
        android:textSize="28dp" 
        android:textAppearance="?android:attr/textAppearanceLarge"/>
</RelativeLayout>

<RelativeLayout
    android:id="@+id/relativeLayout2"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_weight="0.75" >


    <Button
        android:id="@+id/button1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="40dp"
        android:layout_marginBottom="-7dp"
        android:layout_marginRight="-6dp"
        android:layout_marginLeft="-6dp"
        android:gravity="fill"
        android:text="Application Form"
        android:shadowColor="#ffffff"
        android:shadowDx="2"
        android:shadowDy="2"
        android:shadowRadius="1"
        android:drawableRight="@drawable/ab" />


    <Button
        android:id="@+id/button2"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/button1"
        android:layout_below="@+id/button1"
        android:layout_marginBottom="-7dp"
        android:layout_marginRight="-6dp"
        android:layout_marginLeft="-6dp"
        android:gravity="fill"
        android:text="Prospectus"
        android:shadowColor="#ffffff"
        android:shadowDx="2"
        android:shadowDy="2"
        android:shadowRadius="1"
        android:drawableRight="@drawable/ab" />


    <Button
        android:id="@+id/button3"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/button2"
        android:layout_below="@+id/button2"
        android:layout_marginBottom="-7dp"
        android:layout_marginRight="-6dp"
        android:layout_marginLeft="-6dp"
        android:gravity="fill"
        android:text="Scholarship"
        android:shadowColor="#ffffff"
        android:shadowDx="2"
        android:shadowDy="2"
        android:shadowRadius="1"
        android:drawableRight="@drawable/ab" />


    <Button
        android:id="@+id/button4"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/button3"
        android:layout_below="@+id/button3"
        android:layout_marginBottom="-7dp"
        android:layout_marginRight="-6dp"
        android:layout_marginLeft="-6dp"
        android:gravity="fill"
        android:text="Counselling"
        android:shadowColor="#ffffff"
        android:shadowDx="2"
        android:shadowDy="2"
        android:shadowRadius="1"
        android:drawableRight="@drawable/ab" />


    <Button
        android:id="@+id/button5"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignRight="@+id/button4"
        android:layout_below="@+id/button4"
        android:layout_marginBottom="-7dp"
        android:layout_marginRight="-6dp"
        android:layout_marginLeft="-6dp"
        android:gravity="fill"
        android:text="Admission Helpline"
        android:shadowColor="#ffffff"
        android:shadowDx="2"
        android:shadowDy="2"
        android:shadowRadius="1"
        android:drawableRight="@drawable/ab" />

</RelativeLayout>

</LinearLayout>

我制作了一个应用程序,其中我将图像应用到按钮的末尾,一个箭头按钮。这是我通过使用drawableright完成的。但最后一个按钮,我的按钮出现了一些不正常的东西..这是为什么?我试图将“admission helpline”文本减少为“admission”,以查看是否存在某些文本格式问题,但这也不起作用..

4

2 回答 2

1

将最后一个 Button 的 alignRight 更改为 alignLeft。

于 2012-05-13T21:33:15.353 回答
1

对于除您使用的最后一个按钮之外的其他按钮:

 android:layout_alignLeft

但是对于您使用的最后一个:

android:layout_alignRight="@+id/button4"

将alignRight更改为alignLeft为:

  android:layout_alignLeft="@+id/button4"

结果如下: 在此处输入图像描述

于 2012-05-13T21:43:54.937 回答