我试图获得一些彩色圆角图像视图!!!
我定义了这样的图像视图:
<ImageView
android:id="@+id/game_play_color_image_1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_gravity="center"
android:layout_margin="@dimen/game_play_values_colors_margin"
android:layout_weight="1"
android:background="@drawable/soft_corner"
android:scaleType="fitXY" />
,背景定义:
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle" >
<stroke
android:width="3dp"
android:color="#ffffff" />
<solid android:color="#ffffff" />
<padding
android:bottom="1dp"
android:left="1dp"
android:right="1dp"
android:top="1dp" >
</padding>
<corners android:radius="5dp" >
</corners>
我设置了像这样的图像视图的颜色
(颜色是我自己的类,它有3个属性,你可以看到)
imageView.setBackgroundColor(Color.rgb(color.getRed(), color.getGreen(), color.getBlue()));
但问题是,我的图像视图没有圆角!!
出了什么问题?
提前致谢
答案 0 :(得分:0)
因为您再次设置背景...如果您已经有背景资源,则替换它。如果您希望imageView将纯色作为imageview的背景,请尝试使用@drawable/soft_corner
作为imageResource
,并将形状设置为透明的矩形的颜色android:color/transparent
答案 1 :(得分:0)
这对我有用,所以你使用它会帮助你
<solid android:color="#FFFFFF" />
<stroke
android:width="1dp"
android:color="#2f6699" />
<corners
android:topLeftRadius="10dp"
android:topRightRadius="10dp"
android:bottomLeftRadius="10dp"
android:bottomRightRadius="10dp"
/>
答案 2 :(得分:0)
您需要根据需要创建自定义ImageView。查看this了解详情。