我有一个ShapeDrawable。我想以编程方式设置CornerRadius(TopLeftRadius& BottomLeftRadius)。
下面是我的xml
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:top="5dp"
android:bottom="5dp">
<shape android:shape="rectangle">
<corners android:topLeftRadius="20dp"
android:bottomLeftRadius="20dp"/>
<solid android:color="#A2D368"/>
</shape>
</item>
</layer-list>
答案 0 :(得分:5)
这样做;
float mRadius=3f;
GradientDrawable drawable=new GradientDrawable();
drawable.setShape(GradientDrawable.RECTANGLE);
drawable.setCornerRadii(new float[]{mRadius, mRadius, 0, 0, 0, 0, mRadius, mRadius});
了解更多详情click here
答案 1 :(得分:1)
<shape android:shape="rectangle">
<corners
android:topLeftRadius="@dimen/button_radius"
android:topRightRadius="0dp"
android:bottomLeftRadius="0dp"
android:bottomRightRadius="@dimen/button_radius"/>
<stroke
android:width="@dimen/button_stroke_width"
android:color="@color/colorBlack"/>
<gradient
android:angle="-90"
android:startColor="@color/colorLightPurple"
android:endColor="@color/colorDeepPurple" />
</shape>
答案 2 :(得分:0)
使用 GradientDrawable 的 setCornerRadii (float[] radii)
方法。
通常,此方法采用大小为 8 的浮点数组。
对于 4 个角中的每一个,都需要 2 个半径值,即 x 半径和 y 半径。
在浮点数组中,角的顺序为左上、右上、右下、左下。
由于您要求左上和左下半径,因此您需要将半径值设置为浮点数组的前 2 个和后 2 个索引。
样品->
setCornerRadii(new float[]{50, 50, 0, 0, 0, 0, 50, 50})