如何在Android中以编程方式更改形状的笔触宽度?

时间:2014-12-15 20:17:30

标签: java android shape

这是circle.xml

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
       android:shape="oval">
    <solid android:color="#00000000"/> 
    <padding android:left="30dp" android:top="30dp"
             android:right="30dp" android:bottom="30dp" />
    <stroke android:color="#439CC8" android:width="7dp" />
</shape>

这是我的代码:

textview.setBackgroundResource(R.drawable.circle);

我想在我的java代码中更改笔触粗细。如何以编程方式更改它?

2 个答案:

答案 0 :(得分:10)

这样做:

1)使用通常的TextView

获取findViewById()
TextView textView = (TextView) rootView.findViewById(R.id.resourceName);

2)使用DrawableTextView获取getBackground()并将其投放到GradientDrawable

GradientDrawable backgroundGradient = (GradientDrawable) textView.getBackground();

3)使用setStroke()方法将其应用一个笔划(以像素和颜色传递宽度):

backgroundGradient.setStroke(5, Color.BLACK);

整个代码:

TextView textView = (TextView) rootView.findViewById(R.id.resourceName);
GradientDrawable backgroundGradient = (GradientDrawable) textView.getBackground();
backgroundGradient.setStroke(5, Color.BLACK);

答案 1 :(得分:7)

您可能需要以编程方式创建

ShapeDrawable circle = new ShapeDrawable( new  OvalShape() );

您需要在此之后设置属性,(填充,颜色等)然后更改其笔划

circle.getPaint().setStrokeWidth(12);

然后将其设置为视图的背景

textview.setBackgroundDrawable(circle);