我已經創建瞭如下九宮PNG圖片九補丁圖像作爲按鈕的背景安卓
,但是當我將其添加爲一個按鈕,我有以下的東西產生的背景:
,你可以看到的畫面沒有填滿所有按鈕的背景!
這裏是XML佈局文件:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<Button
android:id="@+id/btn"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="@drawable/ninepatchimage"
android:text="Click ME" />
</LinearLayout>
任何一個可以告訴我爲什麼?
是我將它保存爲9.png –
也許嘗試沒有填充 – FabianCook
所選圖像保存爲img.9.png,但是當我將它添加到項目作爲圖標集圖像時,我檢查了圖像的名稱,它是img.png在Drawable文件夾中!這裏的問題是? –