在中心周围放置两个文本视图。 (左右对齐)

时间:2013-03-08 19:56:52

标签: android android-layout

我有ListView,每行有两个单词。我希望这两个词在中心周围有一个小的间隙。

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

 Please    Help
     me    !!
   This    should
    not    be
     so    hard            

ListView中的每一行都包含两个TextView s ..

1 个答案:

答案 0 :(得分: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>