I need to pass the variable from onCreate method to OnClickListener...
// onCreate method
String num2 = bundle.getString("phno");
// onClickListener method
s.sendTextMessage(no,null,msg,null,null);
here in "no" place i need to use the String which i get in the Oncreatemethod from another activity...i know that navigating the activities using bundle and i used that method here... i need help in "num2" which i get in the oncreate method to onclick listener in "no" place....
i tried simply with String no=num2;
but it doesnt work