It looks like NinePatchDrawable objects don't let you access the underlying bitmaps, but I suppose you could draw them to a Canvas and then read the resulting bitmap out of that. This would probably solve your power-of-two problem as well.
You can then read the padding area with getPadding(), and convert those positions to a 0..1 range for use as texture coordinates.
Then, in OpenGL you would draw a textured brick using a mesh of nine quads, like a '#' symbol. Your texture coordinates for the vertices would be fixed, and correspond to your nine-patch padding. Your position coordinates would depend on the scaling of your block. You would keep your corner quads the same size, and scale the centre quad as desired. (Remaining quads would scale along one dimension as required to keep everything joined up).
Personally, I'd be inclined to forget about the Android nine-patches and instead adopt a convention for the brick artwork where (say) the middle 50% of the width and height are stretchable, and the 25% sections around the perimeter are not. Depends how much work you're throwing away, though.