2011-10-04 Miguel de Dios <miguel.dedios@artica.es>

* src/pandroid_event_viewer/pandorafms/PandroidEventviewerActivity.java:
	fixed to show "unknow event" when fail the scan of events.
	
	* res/layout/about.xml: added the logo and wrote the company's short name.



git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@5036 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2011-10-04 14:23:25 +00:00
parent cc71474d4c
commit 575516b858
3 changed files with 26 additions and 5 deletions

View File

@ -1,3 +1,10 @@
2011-10-04 Miguel de Dios <miguel.dedios@artica.es>
* src/pandroid_event_viewer/pandorafms/PandroidEventviewerActivity.java:
fixed to show "unknow event" when fail the scan of events.
* res/layout/about.xml: added the logo and wrote the company's short name.
2011-10-04 SAncho Lerena <slerena@artica.es>
* strings.xml: Edited description.

View File

@ -21,11 +21,25 @@
android:layout_height="fill_parent"
android:padding="10dip"
>
<TextView
android:layout_width="wrap_content"
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Copyright (c) 2011 Artica Soluciones Tecnologicas"
/>
>
<ImageView
android:layout_weight="0"
android:id="@+id/img_logo_about"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="5px"
android:src="@drawable/pandorafms_logo"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Copyright (c) 2011 Artica"
/>
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"

View File

@ -378,7 +378,7 @@ public class PandroidEventviewerActivity extends TabActivity implements Serializ
EventListItem event = new EventListItem();
if (items.length != 21) {
event.description_event = getApplication().getString(R.string.unknown_event_str);
event.event = getApplication().getString(R.string.unknown_event_str);
}
else {
if (items[0].length() == 0) {