標籤:
NinePatch是一種很有用的PNG圖片格式,它可以在特定地區隨文字大小進行縮放。如下:
從可以看到,背景圖片的中間地區會隨著文字的大小進行縮放。背景圖片是一張NinePatch圖片。 NinePatch圖片可以使用android內建的draw9patch工具來製作,該工具在SDK安裝路徑的tools目錄下。
原始碼如下:
1 package com.example.day22_02ninepatchdemo; 2 3 import android.app.Activity; 4 import android.os.Bundle; 5 6 public class MainActivity extends Activity { 7 8 @Override 9 protected void onCreate(Bundle savedInstanceState) {10 super.onCreate(savedInstanceState);11 setContentView(R.layout.activity_main);12 }13 }
1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 2 xmlns:tools="http://schemas.android.com/tools" 3 android:layout_width="match_parent" 4 android:layout_height="match_parent" 5 android:paddingBottom="@dimen/activity_vertical_margin" 6 android:paddingLeft="@dimen/activity_horizontal_margin" 7 android:paddingRight="@dimen/activity_horizontal_margin" 8 android:paddingTop="@dimen/activity_vertical_margin" 9 tools:context="com.example.day22_02ninepatchdemo.MainActivity"10 android:orientation="vertical" >11 12 <TextView13 android:layout_width="wrap_content"14 android:layout_height="wrap_content"15 android:text="你好你好你好你好你好你好你好你你好你好你好你好你好你好你好你你好你好你好你好你好你好你好你" 16 android:background="@drawable/chatfrom_bg"/>17 18 <TextView19 android:layout_width="wrap_content"20 android:layout_height="wrap_content"21 android:text="你好你好你好你好你好你好你好你你好你好你好你好你好你好你好你你好你好你好你好你好你好你好你你好你好你好你好你好你好你好你" 22 android:background="@drawable/mymsgbg2"/>23 24 </LinearLayout>
:第一條是未經處理的背景圖片,第二張是處理過的背景圖片
可以看到兩張圖片用windows相片檢視器開啟是不一樣的,而且尾碼也不一樣,前者是xxx.png,後者是xxx.9.png。
022_02Android之Nine Patch圖片