I have a little problem. I want to start activity but in something other way. I know that
Intent i = new Intent(this, ActivityTwo.class);
initialize intent and after that I can startActivity
. But I want do something like that:
Intent i = new Intent(this, MyString.class);
I have no nameActivity.class
, but I want change on string.class. How I can start activity when I have string name of class?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…