Can anybody tell me, how to get a dialog popup (ColorPickerDialog
) when i click on Button.
Code from comments:
Button color = (Button)findViewById(R.id.color_button);
color.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
new ColorPickerDialog(getBaseContext(), mListener ,a ).show();
System.out.println("button pressed");
}
});
}),initialColor);
dlg.show();
}
});
I want select color , i done with spinner by using names. but i want more color's for that i have color picker dialog when i press on that button i want it will popup see in image: http://dl.dropbox.com/u/38493970/device-2011-08-23-134910.png
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…