pandorafms/pandora_agents/android/mobile/res/layout/help.xml

35 lines
1.3 KiB
XML
Raw Normal View History

<?xml version="1.0" encoding="utf-8"?>
<!--
// Pandora FMS - http://pandorafms.com
// ==================================================
// Copyright (c) 2005-2011 Artica Soluciones Tecnologicas
// Please see http://pandorafms.org for full contribution list
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU Lesser General Public License
// as published by the Free Software Foundation; version 2
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#000000"
android:orientation="vertical"
android:padding="10dip" >
2012-07-09 Mark Holland <mark@mark-holland.me.uk> * AndroidManifest.xml: Added Pandora FMS comment to header. * res/layout/About.xml: Swapped hardcoded text for strings. * res/layout/help.xml: Added scrollview. * res/layout/password_choose.xml: View for dialog when choosing whether to have a password. * res/layout/password_create.xml: Added textviews with instructions. * res/layout/password_entry.xml: Swapped hardcoded text for strings. * res/layout/setup.xml: Added checkboxes for all modules. * res/layout/setupnosim.xml: View that only shows checkboxes for modules that don't need a sim card present. * res/values/strings.xml: Updated help string (english only). Lots of new strings, also added to strings-en and strings-es. * src/pandroid/agent/About.java: Added Pandora FMS comment to header. * src/pandroid/agent/core.java: Added Pandora FMS comment to header. Added variable for hello signal. Added reporting variables for all modules. Changed alarm to be accessed in a static way. changed agent identifier from pandroid plus simID to pandroid plus install uid. * src/pandroid/agent/Help.java: Added Pandora FMS comment to header. * src/pandroid/agent/Installation.java: Calculates a unique installation uid. * src/pandroid/agent/PandroidAgent.java: hasSim now works whether phone without sim and also tablet without capability for sim card. On resume sets hello signal to 1. * src/pandroid/agent/PandroidAgentListener.java: Removed unnecessary variables, all defaults come from Core.java. Ensure Hello signal changed to 0 after every connection. Variables for all module reporting, data only added to xml if enabled in setup. * src/pandroid/agent/setup.java: Added Pandora FMS comment to header. Different views loaded depending on whether sim card is present. Added button for changing password. Added checkboxes for all modules. Added dialog for choosing whether to set a password. Added minimum password length and empty to remove password. Keyboard dismissed upon completing dialogs. * src/pandroid/agent/SMSBroadcastReceiver.java: Added Pandora FMS comment to header. * src/pandroid/agent/status.java: Added Pandora FMS comment to header. Remove incorrect toast message when pressing start button. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6755 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-09 10:35:48 +02:00
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
2012-07-09 Mark Holland <mark@mark-holland.me.uk> * AndroidManifest.xml: Added Pandora FMS comment to header. * res/layout/About.xml: Swapped hardcoded text for strings. * res/layout/help.xml: Added scrollview. * res/layout/password_choose.xml: View for dialog when choosing whether to have a password. * res/layout/password_create.xml: Added textviews with instructions. * res/layout/password_entry.xml: Swapped hardcoded text for strings. * res/layout/setup.xml: Added checkboxes for all modules. * res/layout/setupnosim.xml: View that only shows checkboxes for modules that don't need a sim card present. * res/values/strings.xml: Updated help string (english only). Lots of new strings, also added to strings-en and strings-es. * src/pandroid/agent/About.java: Added Pandora FMS comment to header. * src/pandroid/agent/core.java: Added Pandora FMS comment to header. Added variable for hello signal. Added reporting variables for all modules. Changed alarm to be accessed in a static way. changed agent identifier from pandroid plus simID to pandroid plus install uid. * src/pandroid/agent/Help.java: Added Pandora FMS comment to header. * src/pandroid/agent/Installation.java: Calculates a unique installation uid. * src/pandroid/agent/PandroidAgent.java: hasSim now works whether phone without sim and also tablet without capability for sim card. On resume sets hello signal to 1. * src/pandroid/agent/PandroidAgentListener.java: Removed unnecessary variables, all defaults come from Core.java. Ensure Hello signal changed to 0 after every connection. Variables for all module reporting, data only added to xml if enabled in setup. * src/pandroid/agent/setup.java: Added Pandora FMS comment to header. Different views loaded depending on whether sim card is present. Added button for changing password. Added checkboxes for all modules. Added dialog for choosing whether to set a password. Added minimum password length and empty to remove password. Keyboard dismissed upon completing dialogs. * src/pandroid/agent/SMSBroadcastReceiver.java: Added Pandora FMS comment to header. * src/pandroid/agent/status.java: Added Pandora FMS comment to header. Remove incorrect toast message when pressing start button. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6755 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-09 10:35:48 +02:00
<TextView
android:id="@+id/help_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</ScrollView>
2012-07-09 Mark Holland <mark@mark-holland.me.uk> * AndroidManifest.xml: Added Pandora FMS comment to header. * res/layout/About.xml: Swapped hardcoded text for strings. * res/layout/help.xml: Added scrollview. * res/layout/password_choose.xml: View for dialog when choosing whether to have a password. * res/layout/password_create.xml: Added textviews with instructions. * res/layout/password_entry.xml: Swapped hardcoded text for strings. * res/layout/setup.xml: Added checkboxes for all modules. * res/layout/setupnosim.xml: View that only shows checkboxes for modules that don't need a sim card present. * res/values/strings.xml: Updated help string (english only). Lots of new strings, also added to strings-en and strings-es. * src/pandroid/agent/About.java: Added Pandora FMS comment to header. * src/pandroid/agent/core.java: Added Pandora FMS comment to header. Added variable for hello signal. Added reporting variables for all modules. Changed alarm to be accessed in a static way. changed agent identifier from pandroid plus simID to pandroid plus install uid. * src/pandroid/agent/Help.java: Added Pandora FMS comment to header. * src/pandroid/agent/Installation.java: Calculates a unique installation uid. * src/pandroid/agent/PandroidAgent.java: hasSim now works whether phone without sim and also tablet without capability for sim card. On resume sets hello signal to 1. * src/pandroid/agent/PandroidAgentListener.java: Removed unnecessary variables, all defaults come from Core.java. Ensure Hello signal changed to 0 after every connection. Variables for all module reporting, data only added to xml if enabled in setup. * src/pandroid/agent/setup.java: Added Pandora FMS comment to header. Different views loaded depending on whether sim card is present. Added button for changing password. Added checkboxes for all modules. Added dialog for choosing whether to set a password. Added minimum password length and empty to remove password. Keyboard dismissed upon completing dialogs. * src/pandroid/agent/SMSBroadcastReceiver.java: Added Pandora FMS comment to header. * src/pandroid/agent/status.java: Added Pandora FMS comment to header. Remove incorrect toast message when pressing start button. git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6755 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-07-09 10:35:48 +02:00
</LinearLayout>