how to use variable while calling new activity in intent?

后端 未结 7 1528
失恋的感觉
失恋的感觉 2021-01-22 01:08

i have following code to call new activity

now i want to use variable to call new activity

String var1,var2,var3; var1=\"Login\"; var2=\"Signup\"; var3=\"more

7条回答
  •  情歌与酒
    2021-01-22 01:59

    try this
    try {
      String className = 'com.www.tutorialforandroid.com.openActivity';
      Intent openNewIntent = new Intent( this, Class.forName( className ) );
      startActivity( openNewIntent );
    } catch (ClassNotFoundException e) {
      e.printStackTrace();
    }

提交回复
热议问题