次のように長いテキストの段落を表示したいと思います。これは Flipboard からのスナップショットです。
そのような効果を得るために、2TextView
秒を使用しようとしました。
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="40sp"
android:text="T" />
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:layout_height="76dp"
android:text="op British supermarket Tesco (LSE: TSCO) (NASDAQOTH: TSCDY.US) is due to announce its half year results on" />
</LinearLayout>
次の結果が得られます。
かなり近いです。しかし、私が欲しいものではありません。これは、2 行目と 3 行目が一番左にずれているためです。2 行目と 3 行目の左端のスペースはTextView
、大きなフォントで占められています。
Flipboard のものなど、私が使用できるより良い手法はありますか?