删除Android Gallery小部件中的边框?

时间:2011-03-17 20:01:02

标签: android

如何去除Gallery图像周围的丑陋灰色边框?

2 个答案:

答案 0 :(得分:8)

在ImageAdapter中排除此行以停止加载该预设:

//imageBackground = ta.getResourceId(R.styleable.Gallery1_android_galleryItemBackground, 1);

此后图像可能会重叠,因此请进入main.xml或用于样式设置的任何内容,并将其添加到图库中,以便在图库图像周围填充,如透明边框:

android:spacing="10px"

现在,XML的Gallery部分将为:

<Gallery 
android:id="@+id/Gallery01" 
android:layout_width="fill_parent" 
android:layout_height="wrap_content"
android:spacing="10px">
</Gallery>

答案 1 :(得分:2)

另一种方法是设置你的Gallery.setUnselectedAlpha(1); 最后的答案给我带来了麻烦。 对不起我的英文!