diff --git a/src/kalsms/niryariv/itp/Main.java b/src/kalsms/niryariv/itp/Main.java index 1409a95..9188aac 100644 --- a/src/kalsms/niryariv/itp/Main.java +++ b/src/kalsms/niryariv/itp/Main.java @@ -34,7 +34,6 @@ public class Main extends Activity { String infoText = new String(); // Home Screen text - infoText = "All SMS messages"; if (this.identifier.trim() != "") { @@ -46,13 +45,13 @@ public class Main extends Activity { infoText += "If the response body contains text, it will SMS back to the originating phone."; if (this.polling) { - infoText += "
The target URL will be polled every 15 minutes
"; + infoText += "The target URL will be polled every 15 minutes (note that polling increases power consumption)
"; } infoText += "Questions/feedback: niryariv@gmail.com
"; + // END Home Screen text TextView info = (TextView) this.findViewById(R.id.info); info.setText(Html.fromHtml(infoText));