我正在使用 API Demos (SDK Android) 中包含的 ColorPicker 对话框......当我在我的应用程序上使用它时,大小会改变,背景颜色也会改变......我怎样才能获得与在 API 演示中,以下是两张图片:
这是我喜欢得到的
这就是我得到的
很简单,只要改变ColorPickerDialog的构造函数:
public ColorPickerDialog(Context context,
OnColorChangedListener listener,
int initialColor) {
super(context,android.R.style.Theme_Holo_Light_Dialog_NoActionBar);//set you favorite theme
//super(context); //This is the normal constructor
mListener = listener;
mInitialColor = initialColor;
}