一 9.png的概念和使用方式
https://developer.android.com/guide/topics/graphics/2d-graphics.html#nine-patch

.9.png 繪制方式
1.stretchable area 表示的是圖片可以伸縮的區(qū)域,即當(dāng)圖片整體被伸縮時,只有
strtchable area這塊區(qū)域被伸縮,其他區(qū)域不伸縮。
2.padding box 表示的是視圖內(nèi)容的顯示區(qū)域,比如TextView將一張.9.png作為背景,那么TextView的文本內(nèi)容將顯示在padding box區(qū)域中。
note:stretchable area 必須繪制,但是padding box區(qū)域可以不繪制,這樣padding box會與strechable區(qū)域是同一位置*
二 android studio中制作.9.png
https://developer.android.com/studio/write/draw9patch.html

drawing panel與preview panel 說明
*小記:如果顯示內(nèi)容的padding box和可伸縮區(qū)域stretchable area一樣則只需要繪制stretchable area*