0

我有一个ListView每行有两个单词的地方。我希望这两个词围绕中心对齐,有一个小间隙。

类似于(一些随机词......):

 Please    Help
     me    !!
   This    should
    not    be
     so    hard            

中的每一行ListView由两个TextViews..

4

1 回答 1

2
<LinearLayout 
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal" >

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="0.4"
        android:gravity="right" />

    <View
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="0.2"
        />

    <TextView
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="0.4"
        android:gravity="left" />

</LinearLayout>
于 2013-03-08T20:01:58.687 回答