Android Drawable Round Corners Dyanamically

时间:2017-02-26 22:46:50

标签: android android-gridview rounded-corners

我有一个包含3列和无限行的网格视图。我希望是:

  • 左上角的项目,左上角为圆角。
  • 右上角的项目有一个右上角的圆角。
  • 左下方的项目左下角为圆角。
  • 右下方的项目有一个右下角。

我原以为我可能会为每个场景创建4个xml文件,但我意识到我需要创建的不仅仅是4.我需要创建一个以防万一只有一个项目网格。如果网格中只有1行,中间项目只有一行,谁知道...

我只是想知道这个问题是否有更优雅的解决方案。

1 个答案:

答案 0 :(得分:2)

以下代码可以为您提供帮助,

GradientDrawable drawable;
makeBackground(drawable, 5, R.color.black, 2, R.color.white);

private void makeBackground(GradientDrawable drawable, int radius, int backgroundColorResource, int borderWidth, int borderColorResource){
    drawable.setColor(getColor(getContext(), backgroundColorResource));
    drawable.setStroke(dpToPx(borderWidth), getColor(getContext(), borderColorResource));
    drawable.setCornerRadius(dpToPx(radius));
}

public static int dpToPx(int dp) {
    return (int) (dp * Resources.getSystem().getDisplayMetrics().density);
}

public static int getColor(Context context, int res){
    return ContextCompat.getColor(context, res);
}

对于不同角落的不同值,您必须使用setCornerRadii而不是setCornerRadius。