I want to use existing onClick method to make my program simpler. It consists of onClick method and other method:
@Override
public void onClick(View v) {
s
public class DemoActivity extends AppCompatActivity implements View.OnClickListener{
Button mBtnAutomaticClick;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_report_bug);
mBtnAutomaticClick = findViewById(R.id.automatic_click_demo);
mBtnAutomaticClick.setOnClickListener(this);
mBtnAutomaticClick.performClick(); // for automatic click event
}
}
@Override
public void onClick(View v) {
switch (v.getId()) {
case R.id.automatic_click_demo:
// your code
break;
}
}
When activity will call your code which you have written inside onClick will be called automatically.