GPSの現在地の緯度と経度を返すメソッドがあります。これらの値をパブリック変数に格納して、メッセージとして緯度と経度のSMSを送信する別の静的クラスからアクセスできるようにしたいと思います。メソッドの結果変数を別のクラスに転送する
私が主な活動で、このコードを持っている:他の静的クラスで
location.getLatitude();
location.getLongitude();
strLongitude = location.convert(location.getLongitude(), location.FORMAT_DEGREES);
strLatitude = location.convert(location.getLatitude(), location.FORMAT_DEGREES);
:
SmsManager smsManager = SmsManager.getDefault();
// Send a text based SMS
smsManager.sendTextMessage(senderNum,null,"Latitude and Longitude", null,null);
コードの[mcve]を表示してください。 6行のコードは完全ではありません。 –