最佳答案
我希望圆滑视图的角落,并且在运行时根据内容更改视图的颜色。
TextView v = new TextView(context);
v.setText(tagsList.get(i));
if(i%2 == 0){
v.setBackgroundColor(Color.RED);
}else{
v.setBackgroundColor(Color.BLUE);
}
v.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT));
v.setPadding(twoDP, twoDP, twoDP, twoDP);
v.setBackgroundResource(R.drawable.tags_rounded_corners);
我希望设置一个可绘制和颜色会重叠,但他们没有。我第二次执行的任何一个都是产生的背景。
有没有什么方法可以通过编程创建这个视图,记住背景颜色要到运行时才能决定?
编辑: 我现在只在红色和蓝色之间切换进行测试。以后颜色将由用户选择。
编辑:
Tag _ round _ corners. xml:
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" >
<corners
android:bottomRightRadius="2dp"
android:bottomLeftRadius="2dp"
android:topLeftRadius="2dp"
android:topRightRadius="2dp"/>
</shape>