Increase lap item text size and margins

This commit is contained in:
Phillip Hsu 2016-09-27 17:24:40 -07:00
parent 7248f8a8ae
commit a8542831ec

View File

@ -2,7 +2,8 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal" android:orientation="horizontal"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content"> android:layout_height="wrap_content"
android:paddingTop="@dimen/item_margin_between_elements">
<TextView <TextView
android:id="@+id/lap_number" android:id="@+id/lap_number"
@ -10,14 +11,15 @@
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:gravity="center" android:gravity="center"
style="@style/TextAppearance.AppCompat"/> style="@style/TextAppearance.AppCompat.Subhead"/>
<com.philliphsu.clock2.stopwatch.ui.ChronometerWithMillis <com.philliphsu.clock2.stopwatch.ui.ChronometerWithMillis
android:id="@+id/elapsed_time" android:id="@+id/elapsed_time"
android:layout_width="0dp" android:layout_width="0dp"
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:gravity="center"/> android:gravity="center"
style="@style/TextAppearance.AppCompat.Subhead"/>
<TextView <TextView
android:id="@+id/total_time" android:id="@+id/total_time"
@ -25,6 +27,6 @@
android:layout_height="match_parent" android:layout_height="match_parent"
android:layout_weight="1" android:layout_weight="1"
android:gravity="center" android:gravity="center"
style="@style/TextAppearance.AppCompat"/> style="@style/TextAppearance.AppCompat.Subhead"/>
</LinearLayout> </LinearLayout>