What is the recommended approach to displaying a background image (or border) on Android. The foreground will be photos my users can specify. See below, the gray area will be the user-defined photos in the foreground:
I see the following possibilities:
- Overlaying two images
- Create a 9-patch image from the background and defining it as the background to the imageview that will display the photos.
The photos will be fixed-sized so I'm leaning towards option 1. Any recommendations from folks who have had to do this type of thing before? Thanks in advance.