I made a nine-patch, and a custom viewgroup, then I made the background of that viewgroup to be the nine-patch.

The problem is: The nine-patch is ignoring the "content area" settings.

So: How I use a nine-patch properly in a custom view?

OR:

How I grab the content area from the nine-patch so I can use it on the OnMeasure and OnLayout math?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 1 down vote accepted

Also use boolean getPadding(Rect padding) on the NinePatchDrawable to get the padding for the content (your content + 9patch padding = total group dize)

link|improve this answer
Totally correct awnser, thanks :) Too bad Android documentation suck and do not explain that properly. – speeder Jun 1 '11 at 19:18
feedback

You may need to draw the object directly on the ViewGroup by overriding its onDraw method:

public void onDraw(Canvas canvas) {
 NinePatchDrawable bg =  (NinePatchDrawable) resources.getDrawable(id);
 if (bg != null) {
  bg.setBounds(0, 0, getWidth(), getHeight());
  bg.draw(canvas);
  }
 }
link|improve this answer
Doing thta do not fix the problem at all. – speeder Jun 1 '11 at 17:14
Are you saying you tried it and it didn't work? It should, assuming you provide the correct id in the call to getDrawable() – rob Jun 1 '11 at 18:07
feedback

Your Answer

 
or
required, but never shown

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