This is the code in which I want to change this one Toast message into 3 Intent. How can I do so:
@Override
public void onClick(int buttonIndex) {
Toast.makeText(
parent.getContext(),
"On click " + circleSubButtonTexts[buttonIndex],
Toast.LENGTH_SHORT).show();
}