如何获取按钮的背景形状颜色?

时间:2018-02-16 16:29:26

标签: android button colors drawable background-color

我有9个自定义圆形按钮,每个按钮打开颜色选择器,底部视图的保存按钮检索所有数据。

我的问题是我无法正确检索颜色。而且代码也可以检索24版以上的数据。这也是无用的。 Debugger output 示例代码

每次单击按钮时都会调用此代码。它从颜色选择器中获取颜色值。

GradientDrawable c1, c2;
  Button mcbt_1,mcbt_2;

           // this function gets call everytime button is clicked ,it sets the color to the background and maintain the shape of button to circle.
            public void onColorSelected(int color) {
                switch (buttonSelected) {
                    case 1:
                        c1 = (GradientDrawable) Mcbt_1.getBackground();
                        c1.setColor(color);
                        break;
                    case 2:
                        c2 = (GradientDrawable) Mcbt_2.getBackground();
                        c2.setColor(color);
                        break;

                }
            }

此代码获取视图中存在的按钮的背景颜色。但主要问题是版本支持。而且我得到的数据是按钮的最后颜色值。例如:如果按钮1的int color1 =( - 15210)和int color2 =( - 15700),那么当我使用此值获取值时

   c1 = (GradientDrawable) Mcbt_1.getBackground();
                            color_BT_1 = c1.getColor().getDefaultColor();

从上面的代码我得到color_BT_1为-15700,color_BT_2为-15700。

 if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.N) {
                        c1 = (GradientDrawable) Mcbt_1.getBackground();
                        color_BT_1 = c1.getColor().getDefaultColor();

                        c2 = (GradientDrawable) Mcbt_2.getBackground();
                        color_BT_2 = c2.getColor().getDefaultColor();

                       String edColor = color_BT_1 + "," + color_BT_2 ;
}

1 个答案:

答案 0 :(得分:0)

要获得背景的颜色在API 24下,您必须使用ColorDrawable。可以在here文档和this答案中找到相同的文档。

问题在于保存颜色的值而不是它。

我希望这会有所帮助。