我正在使用圖像作爲按鈕的背景。android按鈕背景拉伸而LinearLayout不是
像這樣。
<Button
android:id="@+id/invitefrnd_mail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_weight="1"
android:background="@drawable/mailreport_button" />
當我移動看到它的背景繪製的圖像被拉伸,而如果我使用的,而不是按鈕的LinearLayout圖像不streach
這樣
<LinearLayout
android:id="@+id/invitefrnd_mail"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_weight="1"
android:background="@drawable/mailreport_button" />
任何一個可以解釋這是爲什麼?
完整佈局的LinearLayout ....對於按鈕的按鈕
<LinearLayout
android:id="@+id/buttons_top_invite"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:baselineAligned="false"
android:orientation="horizontal"
android:weightSum="2" >
<LinearLayout
android:id="@+id/invitefrnd_contacts"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="@drawable/contactsinvite_button" />
<LinearLayout
android:id="@+id/invitefrnd_facebook"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:layout_weight="1"
android:background="@drawable/facebookinvite_button" />
</LinearLayout>
爲什麼要設置機器人:layout_weight = 「1」? –
從Button中移除android:layout_weight =「1」 – Manishika
android:layout_weight =「1」看起來很奇怪,如果沒有錯的話。你能否發佈完整的佈局?謝謝。 – fasteque