Looking around, I see many questions that are very similar but not exactly like mine. The questions I've seen either want to avoid clipping, or clip to some complex path. I just want a simple clip. Here goes.
I want to create an Android app which uses for the background of its various Activies a large photo that cannot be stretched or 9-patched (this is a firm customer requirement). Instead, I just want to provide an image large enough to accommodate the various screen sizes/densities, with excess simply clipped or not displayed - as if it just overflowed the screen.
The images are not patterned or otherwise regular or similar to each other. They are photos indeed, with subjects and ideas presented, so I will of course have to decide which parts are displayed, but I'm not concerned with that right now - just how to approach the problem.
Are there layout XML parameters I can use? Or do I have to cook up a custom layout?