diff options
| author | Stephen Bird <sbird@cyngn.com> | 2016-01-19 16:32:08 -0800 |
|---|---|---|
| committer | Richard MacGregor <rmacgregor@cyngn.com> | 2016-04-08 10:42:49 -0700 |
| commit | c5f5b115f589f95d02fb0fd3690d098ca6397974 (patch) | |
| tree | fed5b61de9dc57cc3158f9783621833c74b4ebc4 /res/layout | |
| parent | 77d309114c14749e5905387cdb03a520b5a16bff (diff) | |
| download | packages_apps_PhoneCommon-c5f5b115f589f95d02fb0fd3690d098ca6397974.tar.gz packages_apps_PhoneCommon-c5f5b115f589f95d02fb0fd3690d098ca6397974.tar.bz2 packages_apps_PhoneCommon-c5f5b115f589f95d02fb0fd3690d098ca6397974.zip | |
Bringup credits and other minor things
Change-Id: Ib8bd8373a53adc7a370850091a04ada87beca098
Diffstat (limited to 'res/layout')
| -rw-r--r-- | res/layout/dialpad_view_unthemed.xml | 39 |
1 files changed, 31 insertions, 8 deletions
diff --git a/res/layout/dialpad_view_unthemed.xml b/res/layout/dialpad_view_unthemed.xml index 18ab647..f16ab39 100644 --- a/res/layout/dialpad_view_unthemed.xml +++ b/res/layout/dialpad_view_unthemed.xml @@ -34,22 +34,45 @@ <LinearLayout android:id="@+id/ild_container" - android:layout_width="wrap_content" + android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal" android:layout_gravity="center_horizontal" + android:weightSum="6" android:layout_marginTop="@dimen/ild_margin_height" android:layout_marginBottom="@dimen/ild_margin_height"> - <TextView android:id="@+id/ild_country" - android:layout_width="wrap_content" - android:layout_height="wrap_content" /> + <LinearLayout + android:layout_width="0dp" + android:layout_height="wrap_content" + android:singleLine="true" + android:layout_weight="3" + android:layout_marginStart="@dimen/dialpad_credits_padding" + android:orientation="horizontal" > + + <TextView android:id="@+id/ild_country" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_gravity="start" /> + + </LinearLayout> - <TextView android:id="@+id/ild_rate" - android:layout_width="wrap_content" + <LinearLayout + android:layout_width="0dp" android:layout_height="wrap_content" - android:layout_marginStart="4dp" - android:textStyle="bold" /> + android:singleLine="true" + android:layout_weight="3" + android:layout_marginEnd="@dimen/dialpad_credits_padding" + android:orientation="vertical" > + + <TextView android:id="@+id/ild_rate" + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:layout_marginStart="4dp" + android:textStyle="bold" + android:layout_gravity="end" /> + + </LinearLayout> </LinearLayout> |
