Android警报对话框文本对齐

时间:2011-06-23 07:26:24

标签: android dialog alert

如何对齐正确的顺序总值,如下面的图像。

enter image description here

感谢。

3 个答案:

答案 0 :(得分:0)

您应该使用自定义对话框来实现此目的。

选中此url

答案 1 :(得分:0)

请尝试以下链接

link1

link2

答案 2 :(得分:0)

对于每一行,在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>

您可以根据需要使用线性布局的高度宽度