diff options
| author | Samuel Tardieu <sam@rfc1149.net> | 2012-05-28 18:28:34 +0200 |
|---|---|---|
| committer | Samuel Tardieu <sam@rfc1149.net> | 2012-05-28 18:28:34 +0200 |
| commit | ea69d3609a09bcd46a7747f496fc68025b130e22 (patch) | |
| tree | 5926002993af9445cfa3b512df3ebd99c7062953 /main/res/layout/coords.xml | |
| parent | f764e8cb53b52b830c5817a268661525dc55b06a (diff) | |
| parent | 29597cb43f2ac551a4c919a7bb40d80ce15a854e (diff) | |
| download | cgeo-ea69d3609a09bcd46a7747f496fc68025b130e22.zip cgeo-ea69d3609a09bcd46a7747f496fc68025b130e22.tar.gz cgeo-ea69d3609a09bcd46a7747f496fc68025b130e22.tar.bz2 | |
Merge remote-tracking branch 'campbeb/xmlCleanup' into upstream
Diffstat (limited to 'main/res/layout/coords.xml')
| -rw-r--r-- | main/res/layout/coords.xml | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/main/res/layout/coords.xml b/main/res/layout/coords.xml index d673d00..3adcb2a 100644 --- a/main/res/layout/coords.xml +++ b/main/res/layout/coords.xml @@ -31,8 +31,8 @@ android:layout_weight="1"> <TableRow android:id="@+id/tableRow1"> <Button android:id="@+id/ButtonLat" - style="@style/button"/> - <EditText style="@style/edittext" + style="@style/button_full"/> + <EditText style="@style/edittext_full" android:id="@+id/EditTextLatDeg" android:gravity="right" android:inputType="number" @@ -40,75 +40,75 @@ <TextView android:id="@+id/LatSeparator1" android:text="°" /> <EditText android:id="@+id/EditTextLatMin" - style="@style/edittext" + style="@style/edittext_full" android:gravity="right" android:inputType="number" android:selectAllOnFocus="true" /> <TextView android:id="@+id/LatSeparator2" android:text="," /> <EditText android:id="@+id/EditTextLatSec" - style="@style/edittext" + style="@style/edittext_full" android:gravity="right" android:inputType="number" android:selectAllOnFocus="true" /> <TextView android:id="@+id/LatSeparator3" android:text="," /> <EditText android:id="@+id/EditTextLatSecFrac" - style="@style/edittext" + style="@style/edittext_full" android:inputType="number" android:selectAllOnFocus="true" /> </TableRow> <TableRow android:id="@+id/tableRow2"> <Button android:id="@+id/ButtonLon" - style="@style/button"/> + style="@style/button_full"/> <EditText android:id="@+id/EditTextLonDeg" - style="@style/edittext" + style="@style/edittext_full" android:gravity="right" android:inputType="number" android:selectAllOnFocus="true" /> <TextView android:id="@+id/LonSeparator1" android:text="°" /> <EditText android:id="@+id/EditTextLonMin" - style="@style/edittext" + style="@style/edittext_full" android:gravity="right" android:inputType="number" android:selectAllOnFocus="true" /> <TextView android:id="@+id/LonSeparator2" android:text="," /> <EditText android:id="@+id/EditTextLonSec" - style="@style/edittext" + style="@style/edittext_full" android:gravity="right" android:inputType="number" android:selectAllOnFocus="true" /> <TextView android:id="@+id/LonSeparator3" android:text="," /> <EditText android:id="@+id/EditTextLonSecFrac" - style="@style/edittext" + style="@style/edittext_full" android:inputType="number" android:selectAllOnFocus="true" /> </TableRow> </TableLayout> - <EditText style="@style/edittext" + <EditText style="@style/edittext_full" android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/latitude" android:hint="@string/latitude" /> - <EditText style="@style/edittext" + <EditText style="@style/edittext_full" android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/longitude" android:hint="@string/longitude" /> - <Button style="@style/button" + <Button style="@style/button_full" android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/current" android:text="@string/waypoint_my_coordinates" /> - <Button style="@style/button" + <Button style="@style/button_full" android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/cache" android:text="@string/waypoint_cache_coordinates" /> - <Button style="@style/button" + <Button style="@style/button_full" android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/done" |
