Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have two ImageViews in a FrameLayout. The first one is an underlying photo. The second one is a overlay image which need to be draggable, scalable and rotatable.

<FrameLayout
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >
    <ImageView [...]></ImageView>
    <ImageView
        android:id="@+id/overlay_image"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:contentDescription="@string/placeholder_description"
        android:scaleType="matrix"
        android:src="@drawable/image_105" 
        android:background="@drawable/point_rect"/>
</FrameLayout>

I am rotating the image with a matrix by calling

ImageView overlayImage = (ImageView) findViewById(R.id.overlay_image)
[do some matrix transformation]
overlayImage.setImageMatrix(matrix)

This works. But what I want to do now is to add a border wrapping this image. The border is a NinePatch bitmap. If I set the border (point_rect.9.png) as a background in the ImageView, as shown in the XML above, it wraps the complete ImageView (and doesn't follow the transformation) but I want it to wrap only the small image that is set as the source of the ImageView. I also want the NinePatch image to scale and rotate as the overlay image is transformed.

I have tried to scale, move and rotate the ImageView itself but it appears that this is only supported starting from API 11 and I'm targeting API 10.

I've been searching on this for days... Can anyone suggest a solution?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.