我在gridview中显示图像和文本。即每个项目由一个图像和一个文本组成。它工作正常。但我想知道如何在android中单独设置每个gridview项的边框。
答案 0 :(得分:7)
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);
答案 1 :(得分:0)
您还可以通过创建自己的形状文件来创建自定义背景...
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<solid android:color="#ffffff" />
<stroke android:width="1dip" android:color="#4fa5d5"/>
</shape>
然后只需在资源中添加背景......
imageView.setBackgroundResource(R.drawable.shape);