diff options
| author | campbeb <bpcampbell@gmail.com> | 2012-05-26 16:02:04 +0900 |
|---|---|---|
| committer | campbeb <bpcampbell@gmail.com> | 2012-05-26 16:02:04 +0900 |
| commit | 29597cb43f2ac551a4c919a7bb40d80ce15a854e (patch) | |
| tree | 8ebe78d08c2dd3d5652d56d86693c38f402b282b /main/res/layout-land | |
| parent | 2fe5c3a48bd4d1f95f15dabbe35e2a2675ce738e (diff) | |
| download | cgeo-29597cb43f2ac551a4c919a7bb40d80ce15a854e.zip cgeo-29597cb43f2ac551a4c919a7bb40d80ce15a854e.tar.gz cgeo-29597cb43f2ac551a4c919a7bb40d80ce15a854e.tar.bz2 | |
XML Cleanup: Button and Edittext parents
Removed duplicated instances of button and edittext styles
but making one the parent for the other.
Diffstat (limited to 'main/res/layout-land')
| -rw-r--r-- | main/res/layout-land/coords.xml | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/main/res/layout-land/coords.xml b/main/res/layout-land/coords.xml index c25a2c0..c2dc9c5 100644 --- a/main/res/layout-land/coords.xml +++ b/main/res/layout-land/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,63 +40,63 @@ <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 android:id="@+id/latitude" - style="@style/edittext" + style="@style/edittext_full" android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="@string/latitude" /> <EditText android:id="@+id/longitude" - style="@style/edittext" + style="@style/edittext_full" android:layout_width="fill_parent" android:layout_height="wrap_content" android:hint="@string/longitude" /> @@ -104,20 +104,20 @@ android:id="@+id/linearLayout2" android:layout_width="fill_parent" android:layout_height="wrap_content" > - <Button style="@style/button" + <Button style="@style/button_full" android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/current" android:layout_weight="1" 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:layout_weight="1" android:text="@string/waypoint_cache_coordinates" /> </LinearLayout> - <Button style="@style/button" + <Button style="@style/button_full" android:layout_width="fill_parent" android:layout_height="wrap_content" android:id="@+id/done" |
