A NinePatch is a stretchable bitmap image, which Android will automatically resize to accommodate the contents of the View in which you have placed it as the background. The four corners are unscaled; the four edges are scaled in one axis, and the middle is scaled in both axes.

learn more… | top users | synonyms (2)

3
votes
2answers
44 views

Convert png images to 9 patch in Android Studio

In android studio,you can edit 9 patches directly from with the IDE. But is it also possible to convert an png image to 9-patch using the IDE? (similar to the android 9-patch tool provided by the ...
1
vote
4answers
79 views

Why do we need 9-patch?

My question is like title says: Why do we need 9-patch images? Are they really so important? Actually, what they really do? I don't get concept of 9-patch images clearly. I know that 9-patch images ...
0
votes
1answer
27 views

Equally distributed icons in an Android Progressbar

I'm trying something that would sound fairly easy to implement. However, it doesn't respond as expected. I'm using a Progressbar to draw a 5 state bar, where the user can click on any of the states to ...
5
votes
0answers
177 views
+100

Building a 9 patch drawable at runtime

I am successfully building a 9patch drawable at runtime on Android 3.0+ using the excellent gist provided by Brian Griffey (found here). Essentially I load the raw (no patches) graphic file from the ...
0
votes
1answer
32 views

Implementing autocompletetextview next to ImageButton using 9patch in a RelativeLayout

I'm having trouble implementing a SearchBox with an ImageButton to the right using assets provided by a designer. I'm not sure if the problem is because of the assets or my implementation. It should ...
0
votes
1answer
22 views

Fit just taken photo into imagebutton

I have an ImageButton, when I press it I can take a picture with my phone. When I take the picture the ImageButtons gets the picture as its source. But the problem is, is that the image doesn't scale ...
0
votes
0answers
46 views

9patch splashscreen on Android stretched

I've made splash image files for my Android application project. The images are .9.patch-files made with the draw9patch tool. On my Samsung SII phone it displays the hdpi file which is 482px wide and ...
1
vote
1answer
51 views

Hide a 1px margin when displaying a png

I am receiving nine-patch images from a server to display in the ui of my android app. This is a hard requirement so I am unable to compile the nine-patches into the APK. It appears that Android ...
1
vote
2answers
85 views

ImageView src vs background

I an trying to use Imageview to overlay a bitmap over a layout. From what I can see. if I use the bitmap (which is a 9-patch) as android:src it does not get streched to cover the layout if I use it ...
0
votes
1answer
85 views

insert imageview in android chat bubble adjustable

I would like to do this on my android chat but I can not get my picture fit my bubble. -I have a LinearLayout, and his background is a bubble 9patch -within this, I have a imageview, insert the ...
0
votes
1answer
32 views

how to stretch the sourrounding of padded area in nine-patch image without the content area?

How do I keep the content are as the red part no matter how wide the nine patch background stretches to. Please see this "zoomed" example image: Notice: the red part is a virtual illustration for ...
1
vote
1answer
55 views

Android draw9patch tool

I've faced a problem while creating 9patch drawable. Drawable is a button with image in the center. I want to stretch everything but that centered image. Now, when I add two dots on the top border ...
2
votes
2answers
27 views

multiple view 9-patch sizing issue

I have a layout with a root as a custom RelativeLayout and within there some arbitrary Views. In my code i programmatically add some new Views and set a background supplied by the attributes in the ...
4
votes
0answers
82 views

How can I set shadows to Android views using 9-patch images

I am trying to set shadow in views in ma Android app. I have created shadow using 2 views but I am looking for an alternative way to do it better? Has anyone know how to do this? Here is what I have ...
0
votes
1answer
41 views

Button with dashed outline - 9patch with tileMode=“repeat”?

I am having trying to accomplish this kind of a design. It needs to stretch to accomodate difference screens but rather then stretching it should repeat the pattern, I think the picture is pretty ...
0
votes
3answers
70 views

What's wrong with this ninepatch image?

I cannot understand, why this 9patch image is not being set as ninepatch in my android app. For some reason, it's showing it as a regular png file. Weird thing is, both the draw9patch tool and the ...
0
votes
1answer
60 views

org.xmlpull.v1.XmlPullParserException: Binary XML file line #5: <nine-patch> requires a valid 9-patch source image

I want to create a custom seek-bar. Along with other resources I have followed this two examples: http://developer-dot-android.blogspot.ro/2012/03/custom-seekbar-tutorial.html ...
0
votes
0answers
18 views

wp8 equivalent andreoid 9patch image

I'm working on a WP8 app and can't find any way to stretch an image only at a specific point (repeating that row of pixels). For example, if I have a box with rounded corners I want to stretch it to ...
0
votes
2answers
65 views

9-patch app doesn't work properly?

I'm trying to create a 9-patch image that only stretches horizontally, and as you can see in the attached image, I drew only in the center top. The second image in the preview (the middle one) shows ...
0
votes
2answers
52 views

Android: nine-patch is centered on one device, but moves somewhat to the right on another

I have a nine-patch image I put on a the background of a full-screen view: And it looks as I want it on 800x480 and 1280x720 screens: it is has some equal transparent space on left and right sides. ...
0
votes
2answers
54 views

Draw 9Patch image without changing actual design

I have *.png image. Using this image , I am creating 9 patch image. In *.png image , there are 45 degree lines.When I Stretch this image, 9 patch Image showing horizontal lines . I want 45 degree ...
0
votes
2answers
73 views

Create custom background android like this chat shape

*How to achieve this * i tried 9 patch there i cant make this and no direct one available
0
votes
1answer
81 views

Making 9 patch image from ribbon icon doesnt strecth correctly

I got this image and i need to make 9 patch of it (i am using it for textview background). I need the text to appear text to left of star like this: I tried this but with no success: Is this ...
0
votes
1answer
120 views

Android Dynamically setting a 9-patch background on EditText widget [duplicate]

firstly thank you for taking the time to read this. So I have created three 9-patch files which are working correctly as I can set them in XML on my registration form I've created and they look fine. ...
0
votes
1answer
34 views

NinePatch images does not stretch

I've created this nine patch image. I've used it as button background. In the button I've also put a text "back", but here is the result. How can I put a text to the right of the arrow and let ...
0
votes
0answers
81 views

Android ActionBar has border when using Nine-Patch background

I'm using a nine-patch png as the windowBackground for an Android app. However, I get a 1px border around the ActionBar. This doesn't happen when I use a simple png. To test this, I've created a ...
2
votes
0answers
143 views

Best Practice for Rounded Rectangles in OpenGL ES

Using OpenGL ES, there seem to be two viable options for rounded rectangles: Manually draw the shape using trig. (This is what I'm currently doing.) Use a a texture or group of textures that scale ...
7
votes
1answer
56 views

Is it possible to make a 9-patch drawable for a callout graphic?

I'm trying to make a callout graphic in Android. I'm not married to the idea of using a 9-patch-drawable, but I think it's the right way to go. I'm essentially trying to make a button with a little ...
0
votes
0answers
43 views

android bads paddings for PopupWindow layout with ninepatch background

This is my layout for my PopupWindow http://pastebin.com/B1HWiTyH and files that this layout contains: rounded_red.xml: http://pastebin.com/uiq77nbH rounded_gray.xml: http://pastebin.com/p1Y8UsiX ...
4
votes
3answers
134 views

Looking for 9-patch graphics creation tool

draw9patch seems to be very uncomfortable. It takes about 5 minutes to draw all required solid black lines, if image is rather big. It's really hard to believe, that highly professional developers ...
0
votes
1answer
93 views

9 Patch Buttons in Android 4.0 are too tall

I have 9 patch buttons for my app, in Android 2.3 they are displayed properly, but when I try in my devices with Android 4.0 the buttons are too tall, and i need them like in Android 2.3. They are in ...
0
votes
1answer
93 views

libgdx TextureAtlas, and NinePatch's

I am making a simple game using libgdx. I have a TextureAtlas that has I ninepatch I am trying to use: The image is saved as menu.9.png I am using the following code: Image bg = new ...
0
votes
3answers
117 views

Android: 9-patch png is treated like a normal png

I've made this 9-patch png and added it to the res/drawable folder: It works nice in the example eclipse shows: But on the emulator it looks messed up: Why is this happening and how can I fix ...
0
votes
1answer
49 views

Lines over 9-patch images

I have 9-patched image (button with rounded corners and incon in the middle) with non gradient (gradient is on the background - lower layer, not button itself) alpha-channeled content, in draw 9-path ...
0
votes
2answers
89 views

9-patch background adds top and bottom padding. How to avoid it?

I'm trying to customize ToggleButton in my app. I'm setting 9-patch image as background as written here. And then in my layout xml: <ToggleButton android:id="@+id/toggle" ...
0
votes
1answer
100 views

Android button background nine patch multiple images

I have three images that have gradient and are basically part of button left, center and right. Left and right have corners rounded. Is their any way to combine all of them in layer-list? or any ...
3
votes
2answers
94 views

9 patch converted to gradient

I would like to have on my Android application an ActionBar with a bottom line. This line should looks like this with only 4 colors : To get this effect I use a 9patch but instead of showing the 4 ...
0
votes
1answer
60 views

using 9-patch imagebutton bigger

I have a screen with some imageButton, it looks fine in mobiles, but I would like them in tablets. So, I tried 9-patch, but I dont know how to use the button.9.png. I create the images for ldpi, ...
0
votes
1answer
52 views

calculating nine patch sizes for all densities

I dont know how is best way to calculate size in pixels for round corners in nine patch images in all folders (hdpi, mdpi...), if I want for example 5dp round corner or something close to this size on ...
-1
votes
1answer
76 views

9-patch Android 4 issue, works Android 2.3 [duplicate]

I created a 9-patch for a button "Day" in the images link below that works as expected on my Android 2.3 phone. When I run for Android 4 Tablet, it does not work. Not sure if I need to tweak the xml ...
0
votes
0answers
81 views

Ninepatch Drawable with ColorFilter

I'm create some calendar view and what I want to do is to create a background for a LineairLayout that is clickabe. Therefore I create a StateListDrawable with two images: The image for the ...
0
votes
1answer
319 views

Loading nine-patch image as a Libgdx Scene2d Button background looks awful

I'm trying to use a Nine Patch as a background for a Libgdx Scene2d UI button. It is loading, buts it is really ugly. I can see the "meta-data" pixels, and its being stretched as if it were just a ...
0
votes
1answer
31 views

Android 9patch opaque corners

I show notifications using android 9patch image: I tried to use white and transparent background, but it's still opaque. And yes, the name of file ends with .9.png Here is the layout of ...
0
votes
1answer
103 views

Strange behavior of Android 9 patch image

I am developing a chat application for that I am using 9 patch bubble Function for displaying the bubble on screen static void showMessage(String message, boolean leftSide) { ...
0
votes
0answers
126 views

Android resizes nine patch image in textview

I have a ninepatch image (speech bubble) that should surround a text. When I set the background of the textview the bubble is shown as it should be without specifying width or height (it should adjust ...
0
votes
1answer
52 views

Android drawable background tiled 9patch workaround

I have read that 9patch isn't able to repeat (it only stretches). But is there any alternative way to create such drawable? Top-left fixed, Top x repeat, Top-right fixed Left y repeat, Center ...
1
vote
3answers
247 views

Change the color of divider in LinearLayout

May I know how I can change the color of divider in LinearLayout? <LinearLayout android:layout_width="match_parent" android:layout_height="48dp" android:orientation="horizontal" ...
0
votes
1answer
109 views

Android 9 Patch Strange Behaviour

I am a designer and am currently working with my developer on an Android app which basically loads an ImageView which we would like to apply a 1px grey border around it with a 2px drop shadow on the ...
0
votes
0answers
23 views

Can we use 9ptach images with html5 mobile desining

I am a native android developer. In designing part 9patch is quite useful to me. Problem is I need to know whether I can use 9patch images in html5 android applications?. If I use them in do they ...
0
votes
0answers
84 views

Javascript/HTML5 based rendering/game library supporting 9-patch

I am looking for a rendering/game engine/framework in HTML5/javascript that allow me to work with 9-patches. I also need to be able to create them dynamically at runtime. Support for touch (on mobile ...

1 2 3 4 5 7