2012-10-30 Miguel de Dios <miguel.dedios@artica.es>

* res/values/styles.xml, res/layout/options.xml: I have started to
	set the new style of app (Thanks Carla).




git-svn-id: https://svn.code.sf.net/p/pandora/code/trunk@8983 c3f86ba8-e40f-0410-aaad-9ba5e7f4b01f
This commit is contained in:
mdtrooper 2013-10-30 15:50:54 +00:00
parent c4d24dc2cd
commit 4b6f5285f0
3 changed files with 56 additions and 37 deletions

View File

@ -1,4 +1,9 @@
2012-10-29 Miguel de Dios <miguel.dedios@artica.es>
2012-10-30 Miguel de Dios <miguel.dedios@artica.es>
* res/values/styles.xml, res/layout/options.xml: I have started to
set the new style of app (Thanks Carla).
2012-10-30 Miguel de Dios <miguel.dedios@artica.es>
* src/pandroid_event_viewer/pandorafms/PandroidEventviewerActivity.java:
fixed when the data return to call for get events is bad format,

View File

@ -17,7 +17,9 @@
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
android:layout_height="wrap_content"
android:background="#242424"
>
<LinearLayout
android:layout_width="fill_parent"
@ -35,19 +37,21 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:text="@string/connection" />
android:text="@string/connection"
/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
android:orientation="vertical"
android:padding="10dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingRight="5dip"
android:text="@string/url_label_str"
android:textColor="#ffffff" />
style="@style/options_label" />
<EditText
android:id="@+id/url"
@ -61,7 +65,8 @@
android:layout_height="wrap_content"
android:paddingRight="5dip"
android:text="@string/user_label_str"
android:textColor="#ffffff" />
style="@style/options_label"
/>
<EditText
android:id="@+id/user"
@ -75,7 +80,8 @@
android:layout_height="wrap_content"
android:paddingRight="5dip"
android:text="@string/password_label_str"
android:textColor="#ffffff" />
style="@style/options_label"
/>
<EditText
android:id="@+id/password"
@ -89,7 +95,8 @@
android:layout_height="wrap_content"
android:paddingRight="5dip"
android:text="@string/api_password_label_str"
android:textColor="#ffffff" />
style="@style/options_label"
/>
<EditText
android:id="@+id/api_password"
@ -97,6 +104,20 @@
android:layout_height="wrap_content"
android:inputType="textPassword"
android:singleLine="true" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="2dp"
android:text="@string/refresh_time_label_str"
style="@style/options_label"
/>
<Spinner
android:id="@+id/refresh_combo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
<TableLayout
android:layout_width="fill_parent"
@ -108,25 +129,6 @@
<TableRow android:layout_marginTop="10dp" >
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="2dp"
android:text="@string/refresh_time_label_str"
android:textColor="#ffffff" />
<Spinner
android:id="@+id/refresh_combo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1" />
</LinearLayout>
<TextView
android:id="@+id/check_connection_status"
android:layout_width="150dp"
@ -134,7 +136,7 @@
android:layout_gravity="center_horizontal"
android:drawableBottom="@drawable/help"
android:text="@string/check_connection"
android:textColor="#ffffff" />
/>
</TableRow>
<TableRow android:layout_marginTop="10dp" >
@ -145,7 +147,8 @@
android:layout_gravity="left|center_vertical"
android:paddingLeft="2dp"
android:text="@string/enable_background_service"
android:textColor="#ffffff" />
style="@style/options_label"
/>
<CheckBox
android:id="@+id/background_service_on"
@ -163,7 +166,8 @@
android:layout_height="wrap_content"
android:paddingLeft="2dp"
android:text="@string/timeout_connections_label_str"
android:textColor="#ffffff" />
style="@style/options_label"
/>
<EditText
android:id="@+id/timeout_connections"
android:layout_height="wrap_content"
@ -194,7 +198,8 @@
<TextView
android:layout_gravity="center_vertical"
android:text="@string/vibration" />
android:text="@string/vibration"
style="@style/options_label" />
<CheckBox
android:id="@+id/vibration_on"
@ -207,7 +212,8 @@
<TextView
android:layout_gravity="center_vertical"
android:text="@string/led_flash" />
android:text="@string/led_flash"
style="@style/options_label" />
<CheckBox
android:id="@+id/led_flash_on"
@ -222,7 +228,8 @@
<TextView
android:id="@+id/textView1"
android:layout_gravity="center_vertical"
android:text="@string/sound" />
android:text="@string/sound"
style="@style/options_label" />
<Button
android:id="@+id/sound_button"

View File

@ -1,16 +1,17 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<style name="options_header">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:background">#999999</item>
<item name="android:background">#D8D8D8</item>
<item name="android:paddingTop">2dp</item>
<item name="android:paddingBottom">2dp</item>
<item name="android:paddingLeft">15dp</item>
<item name="android:layout_marginBottom">5dp</item>
<item name="android:textSize">20dp</item>
<item name="android:textColor">#FFFFFF</item>
<item name="android:textSize">12dp</item>
<item name="android:textColor">#272727</item>
<item name="android:gravity">center</item>
</style>
<style name="table_row">
@ -29,5 +30,11 @@
<item name="android:layout_margin">5dp</item>
<item name="android:textColor">#FFFFFF</item>
</style>
<style name="options_label">
<item name="android:textColor">#F1F1F1</item>
<item name="android:textSize">18dp</item>
<item name="android:textStyle">bold</item>
</style>
</resources>