アプリの情報領域に、アプリの簡単な説明を表示したいと考えています。そのためには、多くのテキストを含むビューを作成する必要があります。そのためのベストプラクティスは何ですか? 実際には、Scrollview を使用して Linear Layout を作成しました。これにテキストを追加します。これには、アプリのバージョンなどの変数値も含まれている必要があります。しかし、それを行うためのより良い方法があるかどうかはわかりませんか?
これが私の現在のアプローチです:
<LinearLayout
android:id="@+id/information_content"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_above="@id/bottom_footer"
android:layout_below="@id/top_header"
android:layout_marginLeft="@dimen/marginLeft"
android:layout_alignParentRight="true"
android:layout_weight="1"
android:orientation="vertical" >
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
<EditText
android:id="@+id/info_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textMultiLine"
android:text="Hallo das ist ein test!!!
dsf" />
</LinearLayout>
</ScrollView>
</LinearLayout>
推奨事項はありますか?
ありがとう