在我的应用程序的信息区域中,我想显示我的应用程序的简要说明。为此,我需要创建一个包含大量文本的视图。最好的做法是什么?实际上我创建了一个带有滚动视图的线性布局,在此我将添加我的文本,其中还应该包含一些变量值,例如我的应用程序版本。但是不知道有没有更好的办法呢?
这是我目前的方法:
<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>
有什么建议吗?
谢谢