summaryrefslogtreecommitdiffstats
path: root/res/layout/dialpad_view_unthemed.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/layout/dialpad_view_unthemed.xml')
-rw-r--r--res/layout/dialpad_view_unthemed.xml39
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>