2

我有一个文本视图,其背景在 xml 文件中定义。

          <TextView
            android:id="@+id/event_tvColor"
            android:layout_width="40dip"
            android:layout_height="40dip"
            android:text="   "
            android:background="@drawable/et_style_color_service_edit"
            android:clickable="true"
          />

           xml file :  et_style_color_service_edit.xml

            <?xml version="1.0" encoding="UTF-8"?>
              <shape xmlns:android="http://schemas.android.com/apk/res/android" 
                    android:shape="oval">        
                 <solid android:color="@color/eventColor"/>
                 <stroke android:width="0sp" android:color="#FFFFFF" />
                 <size android:width="20dp"
                       android:height="20dp"/>
              </shape>

我需要一次性获得视图的颜色。

 ShapeDrawable sc = (ShapeDrawable)tvColor.getBackground();
  ...............

请注意,我需要使用 ShapeDrawable 而不是 GradientDrawable。感谢您的帮助和时间。

解决方案........

        Solution The xml loads into the app as a gradientdrawable and not as a shapedrawable. We have to define the shapeDrawable in java 

          ShapeDrawable sd = new ShapeDrawable(new RectShape);  
          sd.getPaint().setColor(0xFF0000FF); 

如果有人有更好的解决方案可以告诉。

4

1 回答 1

4

经过进一步研究,目前没有办法获取xml加载的ShapeDrawable的颜色。您所要做的就是跟踪您的颜色变化,以便您知道将其设置为什么颜色,即:

int currentColor = Color.WHITE; //this is the default color (color set in xml)

public void changeColor() {
    if (currentColor == Color.WHITE) {
        currentColor = Color.BLUE;
    } else {
        currentColor = Color.WHITE;
    }
    GradientDrawable gd = (GradientDrawable)tvColor.getBackground();
    gd.setColor(currentColor);
}
于 2013-05-22T16:54:09.923 回答