码迷,mamicode.com
首页 > 移动开发 > 详细

android Nine-Patch的使用(制作聊天界面必学)

时间:2015-06-21 17:14:27      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

近期在学习制作聊天的界面,设计到了图片的拉伸问题等等,参考了部分书籍学习了制作Nine-Patch图片。

首先先看不使用Nine_patch的代码与效果

<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"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/frame_left2"
android:text="hello!I‘am xujiajia 654684684613"
android:textSize="20sp"
android:layout_marginRight="50dp"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/frame_right2"
android:textSize="30sp"
android:text="hello!I‘am linghang"
android:layout_marginLeft="50dp"/>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<Button
android:id="@+id/Next"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="30sp"
android:text="NextActivity"
/>
</LinearLayout>
</LinearLayout>

 

技术分享

 

再看一下使用了Nine_Patch的代码以及效果

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/frame_left3"
android:text="hello!I‘am xujiajia 654684684613"
android:textSize="20sp"
android:layout_marginRight="50dp"/>

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/frame_right3"
android:textSize="30sp"
android:text="hello!I‘am linghang"
android:layout_marginLeft="50dp"/>

<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<Button
android:id="@+id/Return"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="30sp"
android:text="Return"
/>
</LinearLayout>
</LinearLayout>

技术分享

 

可以很清楚的看到,两者在代码上只有在background中使用到的图片不同,其他的都一样,这就是Nine_patch的作用了。

首先先看一下drawable中的图片:

技术分享

使用Nine_patch处理过的图片名字后都会有“.9”,但是在使用的时候不需要写出来,比如上述代码:

android:background="@drawable/frame_left3"

android:background="@drawable/frame_right3"

接下来就是讲下 Nine_patch的使用。

首先先要找到Nine_patch。

它位于SKD文件夹中的tools中,名为draw9patch.bat,找到后双击打开即可。

以下是在我电脑中的目录:D:\安卓环境\adt-bundle-windows-x86_64-20140702\sdk\tools

这是效果:

技术分享

另外是show一下做的图片的前后对比:

        技术分享                            技术分享

在png的图片中,仅仅就是多了几条小黑条,但是在layout的图片使用中就完全不同了。

(本人比较愚笨,在此点上纠结了很久,一直在纠结为什么做过的图片没有什么变化,使用之后才明白其理)

 

小黑条自己打开文件后鼠标点点就可以了,在此说一下上下左右四面的小黑条的不同作用。

左边线条:当图片进行纵向拉伸时,由此线条从图片左边水平位移到图片右边所形成的区域都是可以进行纵向拉伸的,此区域外则不进行拉伸,保留原来效果;

上边线条:当图片进行水平拉伸时,由此线条从图片上边垂直位移到图片下边所形成的区域都是可以进行横向拉伸的,此区域外则不进行拉伸,保留原来效果;

(简单地说左边和上边的线条就是决定你图片拉伸的区域)

 

右边线条:控制图片填充内容的垂直padding留白;

下边线条:控制图片填充内容的水平padding留白;

(这两点就是确定你的文字所成列的区域)

 

android Nine-Patch的使用(制作聊天界面必学)

标签:

原文地址:http://www.cnblogs.com/Double2/p/4592052.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!