How do I create a 9Patch image that only scales horizontally? I don't want it to scale vertically. I am not able to create such a 9 PNG.

I tried the article http://radleymarx.com/blog/simple-guide-to-9-patch/ but their method is not working. When I skip the left guide, it gives an error in Eclipse.

I am trying to scale this image horizontally, to create a header bar.

link|improve this question

73% accept rate
feedback

2 Answers

up vote 0 down vote accepted

You could try using a tiled drawable instead of a 9patch:

You create a new drawable via xml, using the non-9patch version of your image, then set the tileMode to repeat. You can then set this new drawable as the background of your header, and it should display as you've described.

http://androidblogger.blogspot.com/2009/01/how-to-have-tiled-background-cont.html

link|improve this answer
If I am not wrong, even "repeat" would tile the image both ways. Doesn't it? – Codevalley Jul 7 '11 at 14:22
You're right. You can set the layout to have a height matching the size of the image. That would prevent any vertical repeating; – danh32 Jul 8 '11 at 16:24
feedback

Well, you could mark the vertical scaling as some part of your image which is transparent. May be just near the top and bottom edges. Only those parts would scale vertically. The other vertical section would stay the same.

link|improve this answer
Actually, I don't want to scale the image vertically at all. Is that not supported? – Codevalley Jul 6 '11 at 12:50
Leaving out the left side marks is not supported. If you can post a sample image and explain how you want it to expand/scale, that would be great. – Kumar Bibek Jul 6 '11 at 12:53
See updated question – Codevalley Jul 6 '11 at 13:18
You will need to modify the image a little, add a little padding at the top and bottom of the image and make those areas as expandable. As far as I know, you will have to specify the vertical expandable portions while creating a 9 patch. I am assuming that the view that would host this image, is almost the same size of the image. That should take care of the rest. – Kumar Bibek Jul 6 '11 at 13:34
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.