我有9个自定义圆形按钮,每个按钮打开颜色选择器,底部视图的保存按钮检索所有数据。
我的问题是我无法正确检索颜色。而且代码也可以检索24版以上的数据。这也是无用的。 示例代码
每次单击按钮时都会调用此代码。它从颜色选择器中获取颜色值。
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 ;
}