Я создаю пользовательские виды дуги, которые похожи на радужные представления. Я могу рисовать дуговые виды, но я не могу создавать отдельные события кликов для каждого представления. Как установить отдельные события щелчка для каждого вида дуги?. Спасибо заранее.
Вот код:
ArcView.java
public class ArcView extends View implements View.OnTouchListener{
Paint paint;
int radius, x, y;
int color;
public ArcView(Context context) {
super(context);
init();
}
public ArcView(Context context, AttributeSet attrs) {
super(context, attrs);
init();
}
public ArcView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init();
}
public ArcView(Context context, int radius, int x, int y, int color) {
super(context);
this.radius = radius;
this.x = x;
this.y = y;
this.color = color;
init();
}
private void init(){
paint = new Paint();
paint.setColor(color);
paint.setStrokeWidth(10);
paint.setStyle(Paint.Style.STROKE);
setOnTouchListener(this);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
paint.setStyle(Paint.Style.FILL);
canvas.drawCircle(x, y, radius, paint);
}
@Override
public boolean onTouch(View view, MotionEvent event) {
return false;
}
}
MainActivity.java
public class MainActivity extends AppCompatActivity {
RelativeLayout arcButton;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
arcButton = (RelativeLayout) findViewById(R.id.arcButton);
arcButton1 = (RelativeLayout) findViewById(R.id.arcButton1);
arcButton2 = (RelativeLayout) findViewById(R.id.arcButton2);
DisplayMetrics dm = new DisplayMetrics();
getWindowManager().getDefaultDisplay().getMetrics(dm);
int width=dm.widthPixels;
int height=dm.heightPixels;
int arcRadius1 = (int)(width/1.5);
int arcRadius2 = arcRadius1+(int)(width/3.5);
int arcRadius3 = arcRadius2+(int)(width/3.5);
int xCoor = width / 2;
int yCoor = height;
RelativeLayout.LayoutParams params = new RelativeLayout.LayoutParams(width, height);
arcButton.setLayoutParams(params);
View arcView1=new ArcView(this, arcRadius3, xCoor, yCoor, Color.RED);
View arcView2=new ArcView(this, arcRadius2, xCoor, yCoor, Color.BLACK);
View arcView3=new ArcView(this, arcRadius1, xCoor, yCoor, Color.BLUE);
arcButton.addView(arcView1);
arcButton1.addView(arcView2);
arcButton2.addView(arcView3);
}
}
Выход:
Как создать отдельное событие click для каждой кнопки дуги?