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を使用して実行しました。しかし、最後のボタン、私はボタンがいくつかの故障しています..それはなぜですか?テキストのフォーマットに問題があるかどうかを確認するために、テキスト「アドミッションヘルプライン」を単に「アドミッション」に減らしようとしましたが、それも機能しません。

4

2 に答える 2

1

最後のボタンのalignRightをalignLeftに変更します。

于 2012-05-13T21:33:15.353 に答える
1

最後に使用したボタン以外の他のボタンの場合:

 android:layout_alignLeft

しかし、あなたが使用している最後のものについては:

android:layout_alignRight="@+id/button4"

alignRightalignLeftに変更します。

  android:layout_alignLeft="@+id/button4"

結果は次のとおりです。 ここに画像の説明を入力してください

于 2012-05-13T21:43:54.937 に答える