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:
parent
cc71474d4c
commit
575516b858
|
@ -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>
|
2011-10-04 SAncho Lerena <slerena@artica.es>
|
||||||
|
|
||||||
* strings.xml: Edited description.
|
* strings.xml: Edited description.
|
||||||
|
|
|
@ -21,11 +21,25 @@
|
||||||
android:layout_height="fill_parent"
|
android:layout_height="fill_parent"
|
||||||
android:padding="10dip"
|
android:padding="10dip"
|
||||||
>
|
>
|
||||||
<TextView
|
<LinearLayout
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="fill_parent"
|
||||||
android:layout_height="wrap_content"
|
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
|
<TextView
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
|
|
|
@ -378,7 +378,7 @@ public class PandroidEventviewerActivity extends TabActivity implements Serializ
|
||||||
EventListItem event = new EventListItem();
|
EventListItem event = new EventListItem();
|
||||||
|
|
||||||
if (items.length != 21) {
|
if (items.length != 21) {
|
||||||
event.description_event = getApplication().getString(R.string.unknown_event_str);
|
event.event = getApplication().getString(R.string.unknown_event_str);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
if (items[0].length() == 0) {
|
if (items[0].length() == 0) {
|
||||||
|
|
Loading…
Reference in New Issue