I want to start auto reject list with intent. Like this code:
Intent intent = new Intent("WHICH SHOULD I WRITE CODE IN HERE?");
startActivity(intent);
How can I this?
I want to start auto reject list with intent. Like this code:
Intent intent = new Intent("WHICH SHOULD I WRITE CODE IN HERE?");
startActivity(intent);
How can I this?
If the first activity is MainActivity and the second activity is SecondActivity:
Intent intent = new Intent(MainActivity.this, SecondActivity.class);
startActivity(intent);