2012-12-27 Miguel de Dios <miguel.dedios@artica.es>
* AndroidManifest.xml,
src/pandroid_event_viewer/pandorafms/PopupValidationEvent.java,
src/pandroid_event_viewer/pandorafms/PandroidEventviewerActivity.java,
src/pandroid_event_viewer/pandorafms/Main.java,
src/pandroid_event_viewer/pandorafms/About.java,
src/pandroid_event_viewer/pandorafms/Options.java,
src/pandroid_event_viewer/pandorafms/Info.java,
src/pandroid_event_viewer/pandorafms/EventList.java,
res/values/strings.xml,res/values-en/strings.xml,
res/values-es/strings.xml,res/layout/info.xml: fixed some things and
added more stability and a pretty splashscreen.
MERGED FROM BRANCH 4.0.2
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6209 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-04-27 14:30:31 +02:00
|
|
|
<?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.
|
|
|
|
-->
|
2013-11-11 14:09:29 +01:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2012-12-27 Miguel de Dios <miguel.dedios@artica.es>
* AndroidManifest.xml,
src/pandroid_event_viewer/pandorafms/PopupValidationEvent.java,
src/pandroid_event_viewer/pandorafms/PandroidEventviewerActivity.java,
src/pandroid_event_viewer/pandorafms/Main.java,
src/pandroid_event_viewer/pandorafms/About.java,
src/pandroid_event_viewer/pandorafms/Options.java,
src/pandroid_event_viewer/pandorafms/Info.java,
src/pandroid_event_viewer/pandorafms/EventList.java,
res/values/strings.xml,res/values-en/strings.xml,
res/values-es/strings.xml,res/layout/info.xml: fixed some things and
added more stability and a pretty splashscreen.
MERGED FROM BRANCH 4.0.2
git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@6209 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
2012-04-27 14:30:31 +02:00
|
|
|
android:layout_width="fill_parent"
|
2013-11-06 12:52:16 +01:00
|
|
|
android:layout_height="wrap_content"
|
2013-11-11 14:09:29 +01:00
|
|
|
android:layout_margin="15dp"
|
|
|
|
android:orientation="vertical" >
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_weight="1"
|
|
|
|
>
|
2013-11-06 12:52:16 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="10dip" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
style="@style/label_pandora"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:layout_gravity="center_horizontal"
|
|
|
|
android:text="Pandroid Event Viewer"
|
|
|
|
android:layout_marginBottom="30dp" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/img_logo_about"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:contentDescription="@string/pandorafms_logo_description"
|
|
|
|
android:padding="5dp"
|
|
|
|
android:src="@drawable/pandorafms_logo"
|
|
|
|
android:layout_marginBottom="10dp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/pandroid_info_txt"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:layout_marginBottom="10dp" />
|
|
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:text="@string/pandroid_info_long_txt"
|
|
|
|
android:layout_marginBottom="10dp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/url_pandora"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:layout_gravity="center_horizontal"
|
2013-11-06 13:21:04 +01:00
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
android:textColorLink="#a3a3a3" />
|
2013-11-06 12:52:16 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:layout_gravity="center_horizontal">
|
|
|
|
|
|
|
|
|
|
|
|
<CheckBox
|
|
|
|
android:id="@+id/dont_show_again_extended"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_marginLeft="4dp"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2013-11-06 13:21:04 +01:00
|
|
|
android:text="@string/dont_show_again"
|
|
|
|
android:textColor="#a3a3a3" />
|
2013-11-06 12:52:16 +01:00
|
|
|
|
|
|
|
</LinearLayout>
|
2013-11-11 14:09:29 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
2013-11-06 12:52:16 +01:00
|
|
|
</LinearLayout>
|
|
|
|
|
2013-11-11 14:09:29 +01:00
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/button_ok_about"
|
|
|
|
android:text="@string/text_ok_button"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="0"
|
|
|
|
android:background="@drawable/pandora_button"
|
|
|
|
/>
|
|
|
|
|
|
|
|
</LinearLayout>
|