Android颜色选择对话框:color-picker
fb24
10年前
这是一个漂亮和简单的Android颜色选择器。它允许以显示任意数量的不同调色板与颜色的任何(合理)数目。调色板可以被存储在一个阵列并快速生成。
ColorPickerDialogFragment d = new ColorPickerDialogFragment(); // set the palettes d.setPalettes(new AbstractPalette[] { ArrayPalette.fromResources(this, "basecolors", R.string.base_palette_name, R.array.base_palette_colors, R.array.base_palette_color_names), new FactoryPalette("rainbow", "Rainbow", ColorFactory.RAINBOW, 16) }); d.show(getSupportFragmentManager(), tag);