我试图弄清楚如何将其对齐dashboardNewsItemDate
到右侧,而不是左侧。目前它立即显示在dashboardNewsItemHeadline
. 我认为将它放在 aTableRow
中可以实现android:layout_gravity="right"
我想要的功能,但事实证明这是错误的。
<TableLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_gravity="center">
<TableRow
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="New Text"
android:id="@+id/dashboardNewsItemHeadline" android:layout_gravity="left"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New Text"
android:id="@+id/dashboardNewsItemDate" android:layout_gravity="right" android:autoText="false"/>
</TableRow>
</TableLayout>
最后,我的目标是内容,所以要像这样显示......
My news title Mar 3
-----------------------------------------
This is a bit of a longer news Jul 2
title and it wraps