You can try something like this : Create a mutable bitmap from your original image. //You can use the BitmapFactory class for that. http://developer.android.com/reference/android/graphics/BitmapFactory.html Lets call it Bitmap b; Create a Canvas c as show below. Canvas c = new Canvas(b); Create another bitmap from the "small Seeker Type image". Lets call it Bitmap bsmall. c.drawBitmap(bsmall, ...); //Choose one of the drawBitmap methods http://developer.android.com/reference/android/graphics/Bitmap.html
Balwinder Kaur Open Source Development Center ·T· · ·Mobile· stick together The views, opinions and statements in this email are those of the author solely in their individual capacity, and do not necessarily represent those of T-Mobile USA, Inc. On Jul 7, 10:02 pm, peeyush varshney <[email protected]> wrote: > Hi All, > Has anyone customized the Image. Actually I want to have one Image > and over that one more samll Seeker Type image, > Is it possible. Do anyone have some Idea please help me out.. > > -- > Thank & Regards > Peeyush Varshney --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

