开发者

Android Alert Dialog Text Align

How To Align Right Order Total Values Like Below Imag开发者_Python百科es.

Android Alert Dialog Text Align

Thanks.


Please try below links

link1

link2


For each row use the following style in 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>

You can use the height width of the linear layout as your wish

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜