我想弄清楚如何對齊dashboardNewsItemDate
而不是在左邊。目前它立即顯示在dashboardNewsItemHeadline
旁邊。我認爲把它放在TableRow
之內會使我的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
不幸的是,沒有工作: - \ – Webnet