我在网格视图中显示图像和文本。即每个项目由一个图像和一个文本组成。它工作得很好。但我想知道如何在android中分别设置每个gridview项的边界。

最佳答案

1)在res>value文件夹下创建attrs.xml。
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);

08-18 08:04