I have 2 activities
public class MainActivity extends AppCompatActivity {
..............
@Override
protected void onCreate(Bundle savedInstanceState) {
..............
..............
}
}
public class IncomingSms extends BroadcastReceiver{
public void onReceive(Context context, Intent intent){
..............
..............
}
public String getCellData() {
TelephonyManager telephonyManager = (TelephonyManager) ***getSystemService***(Context.TELEPHONY_SERVICE);
GsmCellLocation cellLocation = (GsmCellLocation) telephonyManager.getCellLocation();
..............
..............
return someString;
}
I want to get the return string from getCellData
to public void onReceive
. There is a error on getSystemService in getCellData()
. What can I do. Thanks.