Hi I have this code to move from firstActvivity
to secondActivity
try {
Class ourClass = Class.forName("com.example.listexample.SecondActivity");
forTransferIntent = new Intent(FirstActivity.this, ourClass);
startActivity(forTransferIntent);
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
I want to open my whole class in a popup that contains a button of OK and Cancel and a textfield
to extract data from. most popup I have seen are just informative. I am looking for a popup that I can create fields into.
Thanks!