0
我有一個ListView
其中每行有兩個單詞。我希望這兩個詞在中心附近有一個小小的差距。圍繞中心定位兩個文字瀏覽。 (右對齊和左對齊)
到(一些隨機的話...)類似:
Please Help
me !!
This should
not be
so hard
在ListView
每行包括兩個TextView
秒。
我有一個ListView
其中每行有兩個單詞。我希望這兩個詞在中心附近有一個小小的差距。圍繞中心定位兩個文字瀏覽。 (右對齊和左對齊)
到(一些隨機的話...)類似:
Please Help
me !!
This should
not be
so hard
在ListView
每行包括兩個TextView
秒。
<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>