Added dynamic themes for slecting holo were avaiable

fixed the button bars in the map fragment, and parking timer to use
android's button bar styles

Change-Id: I63e1d2a07f6d13964616f23cc3772dd99437bbee
Signed-off-by: Ricky Barrette <rickbarrette@gmail.com>
This commit is contained in:
2012-04-16 11:21:10 -04:00
parent e5f57674fd
commit 21d43d7f97
6 changed files with 70 additions and 104 deletions

View File

@@ -15,7 +15,7 @@
android:orientation="horizontal"
android:stretchColumns="0,2" >
<TableRow >
<TableRow>
<TextView
android:layout_width="wrap_content"
@@ -102,31 +102,28 @@
<LinearLayout
android:id="@+id/llButtons"
style="?android:attr/buttonBarStyle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/notiyfyme"
android:layout_marginTop="10dip"
android:background="@drawable/distance_background"
android:gravity="center"
android:orientation="horizontal" >
<Button
android:id="@+id/btSetTimer"
android:layout_width="130dip"
style="?android:attr/buttonBarButtonStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center_horizontal|center_vertical"
android:text="@string/setTimer"
android:textSize="14dip" />
android:text="@string/setTimer" />
<Button
android:id="@+id/btRemoveTimer"
android:layout_width="130dip"
style="?android:attr/buttonBarButtonStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center_horizontal|center_vertical"
android:text="@string/removeTimer"
android:textSize="14dip" />
android:text="@string/removeTimer" />
</LinearLayout>
</RelativeLayout>