Выравнивание текста в диалоге оповещения Android - PullRequest
0 голосов
/ 23 июня 2011

Как выровнять итоговые значения правильного порядка, как показано ниже:

enter image description here

Спасибо.

Ответы [ 3 ]

0 голосов
/ 23 июня 2011

Пожалуйста, попробуйте ниже ссылки

ссылка 1

ссылка 2

0 голосов
/ 23 июня 2011

Для каждой строки используйте следующий стиль в xml.

<LinearLayout
    android:id="@+id/linearLayout1"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    android:orientation="horizontal">
    <TextView
        android:text="Label"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"/>
    <TextView 
        android:text="Value"
        android:gravity="right"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"/>
</LinearLayout>

Вы можете использовать высоту ширины линейного макета как хотите

0 голосов
/ 23 июня 2011

Вы должны использовать Пользовательский диалог для этой цели.

Проверьте это url

...