package kalsms.niryariv.itp; import kalsms.niryariv.itp.R; import android.app.Activity; import android.content.Intent; import android.content.SharedPreferences; import android.os.Bundle; import android.preference.PreferenceManager; import android.text.Html; import android.util.Log; import android.view.Menu; import android.widget.TextView; public class Main extends Activity { // public static final String PREFS_NAME = "KalPrefsFile"; public String identifier = ""; public String targetUrl = ""; public void onResume() { Log.d("KALSMS", "RESUME"); super.onResume(); SharedPreferences settings = PreferenceManager.getDefaultSharedPreferences(this); this.identifier = settings.getString("pref_identifier", ""); this.targetUrl = settings.getString("pref_target_url", ""); Log.d("KALSMS", "onResume ident:" + this.identifier +"\ntarget:" + this.targetUrl); String infoText = new String(); infoText = "All SMS messages"; if (this.identifier.trim() != "") { infoText += " starting with " + this.identifier + ""; } infoText += " are now sent to " + this.targetUrl +" in the following format:"; infoText += "
GET " + this.targetUrl + "?sender=<phone#>&msg=<message>
"; infoText += "If the response body contains text, it will SMSed back to the sender."; infoText += "