dashboardNewsItemDate
を左ではなく右に揃える方法を見つけようとしています。現在、 のすぐ隣に表示されdashboardNewsItemHeadline
ます。これを a 内に配置する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