[Android] 代码中动态设置shape

学向勤中得,萤窗万卷书。这篇文章主要讲述[Android] 代码中动态设置shape相关的知识,希望能为你提供帮助。

TextView textView = new TextView(this); GradientDrawable drawable = new GradientDrawable(); drawable.setCornerRadius(5); drawable.setStroke(1, Color.parseColor("#cccccc")); drawable.setColor(Color.parseColor("#eeeeee")); textView.setBackgroundDrawable(drawable);

【[Android] 代码中动态设置shape】 

    推荐阅读