1) создайте файл attrs.xml в папке res> value.
2) Добавьте ресурс:
<declare-styleable name="Gallery1">
<attr name="android:galleryItemBackground" />
</declare-styleable>
3) Добавьте следующий код в соответствующее действие:
TypedArray a = obtainStyledAttributes(R.styleable.Gallery1);
int mGalleryItemBackground = a.getResourceId(
R.styleable.Gallery1_android_galleryItemBackground, 0);
a.recycle();
4) затем установите mGalleryItemBackground
в качестве фона вашего обзора.Вы получите границу за пределами вашего поля зрения.Например:
imageView.setBackgroundResource(mGalleryItemBackground);