From 208945044f3c5855a29464b6cbb7eff65f363c36 Mon Sep 17 00:00:00 2001 From: Nir Yariv Date: Sat, 15 Jan 2011 19:26:40 -0500 Subject: [PATCH] cleanup home screen text --- src/kalsms/niryariv/itp/Main.java | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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 += "

Press Menu to set SMS identifier or target URL."; - infoText += "


Questions/feedback: niryariv@gmail.com"; - // /Home Screen text + infoText += "

Questions/feedback: niryariv@gmail.com

"; + // END Home Screen text TextView info = (TextView) this.findViewById(R.id.info); info.setText(Html.fromHtml(infoText));