This class is a dialog I call in my app which works just fine it has a big black dot in the center, this dialog does not need an XML file. I would like to add a seekbar to this dialog because I want to change the size of the dot I just mentioned while I scroll the seekbar.
public class StrokePicker extends Dialog {
StrokePicker strokepicker;
public StrokePicker(Context context) {
super(context);
}
public class StrokePickerView extends View {
Paint Stroke;
SeekBar seekbar;
private static final int mCENTER= 32;
public StrokePickerView(Context context) {
super(context);
Stroke = new Paint(Paint.ANTI_ALIAS_FLAG);
Stroke.setStyle(Paint.Style.FILL);
Stroke.setColor(Color.BLACK);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
Paint paint = new Paint();
paint.setColor(Color.WHITE);
canvas.drawCircle(canvas.getWidth()/2-mCENTER, canvas.getHeight()/2-mCENTER*3, mCENTER, Stroke);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
setMeasuredDimension(125 * 2, 100 * 2);
}
}
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
LinearLayout layout = new LinearLayout(getContext());
SeekBar seekbar;
layout.setOrientation(LinearLayout.VERTICAL);
layout.setGravity(Gravity.CENTER);
layout.setPadding(10, 10, 10, 10);
layout.addView(new StrokePickerView(getContext()),
new LinearLayout.LayoutParams(
LinearLayout.LayoutParams.WRAP_CONTENT,
LinearLayout.LayoutParams.WRAP_CONTENT));
setContentView(layout);
setTitle("Grosor");
}
}
I haven't found info about how to add a seekbar without using XML, any help will be appreciated. Bye and thanks in advance.
Try this creating a SeekBarPreference
Or