What's the difference between this and Activity.this

后端 未结 4 1039
逝去的感伤
逝去的感伤 2020-12-01 06:49

For example

Intent intent = new Intent(this, SecondActivity.class);

eclipse error: The method setClass(Context, Class) in t

4条回答
  •  抹茶落季
    2020-12-01 07:18

    You are intent to transfer control from one activity to another and for that u ll have to specify an event basically and hence the error. this means the entire activity and firstactivity.this means an event occurring for example a a button clicked.........

提交回复
热议问题