0

我正在创建一个画廊类型的应用程序。我已经启动并运行了所有图片从手机加载并显示在网格视图中的基础知识。我希望 gridview 中的每个图像都有一个边框,可能是白色的,以便它们从黑色背景中脱颖而出。我想实现新 Instagram 使用的类似 gridview 的东西,但可能没有那么先进,周围有阴影。我已经搜索了网络,但我没有找到任何东西。谢谢!

4

1 回答 1

4

在drawable文件夹中创建一个名为stroke.xml的xml文件,

<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>

并将您在 GridView 中使用的 ImageView 的背景设置为该 xml 文件。

编辑:如果您想在单击 GridView 项目时看到橙色或蓝色,则必须指定 ImageView 的属性,如下所示。

<ImageView
        android:id="@+id/ivHighThumbnail"
        android:layout_width="80dip"
        android:layout_height="80dip"
        android:background="@drawable/stroke" 
        android:scaleType="fitXY"
        android:layout_margin="10dip" />

这里请注意属性

android:scaleType="fitXY"
android:layout_margin="10dip" 

这就是让您的项目感觉像是被点击并突出显示的原因。

还将此 xml 部分包含在 stroke.xml 文件中

<padding
        android:bottom="2dp"
        android:left="2dp"
        android:right="2dp"
        android:top="2dp" />

为了更好看的结果...

于 2012-08-17T18:27:48.943 回答