Android

어댑터 안에서 다른 액티비티로 인텐트 보내기

Machine_웅 2018. 5. 25. 17:37
728x90
반응형
Intent gotoShowMoreRiple = new Intent(context,showMoreRiple.class);
gotoShowMoreRiple.putExtra("loginUserId",loginUserId);
gotoShowMoreRiple.putExtra("targetId",targetId);
gotoShowMoreRiple.putExtra("commentNo",commentArr.get(position).no);
gotoShowMoreRiple.putExtra("perComment",commentArr.get(position));
((userPageMainActivity)context).startActivity(gotoShowMoreRiple);

((userPageMainActivity)context).startActivity(gotoShowMoreRiple);

 

이부분에서 

 

 

((userPageMainActivity)context).  요게 중요함.

 

((어댑터를 호출한상위 액티비티)context). startA....  하면됨.

 

 

 

 

728x90
반응형