14
我有三個9-patch PNG,它們組成了一個按鈕(左側,中間,右側)的背景。我想我在其中可以指定爲背景,在XML按鈕,東西線沿線的一個繪製這三個圖像組合在一起:如何從多個圖像製作一個drawable?
res/drawable/button_background.xml:
<?xml version="1.0" encoding="utf-8"?>
<nine-patch xmlns:android="http://schemas.android.com/apk/res/android"
android:src="@drawable/button_left_side" />
<nine-patch android:src="@drawable/button_middle" />
<nine-patch android:src="@drawable/button_right_side" />
res/layout/main.xml:
<button android:background="@drawable/button_background" />
這可能嗎?
如果使用「dp」而不是「px」,它會給出更好的結果。使用px會在高密度設備中產生非常小的左側和右側按鈕。 – seema