我的应用程序中有条款和条件屏幕。我将条款和条件信息放在EditText
字段中。
我的要求:
我想将ScrollView
放在EditText
内以阅读条款和条件文本(因为文本在ScrollView
字段中需要EditText
。我怎么能这样做?
答案 0 :(得分:4)
您不应该使用EditText
进行阅读。在TextView
内使用ScrollView
:
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fillViewport="true">
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:singleLine="false"
android:text="@string/terms_and_conditions" />
</ScrollView>
答案 1 :(得分:1)
您可以在TextView中简单地显示您的条件和条款,并使用滚动,您可以将TextView放在ScrollView中,如下所示:
<ScrollView android:id="@+id/scrollTerms"
android:layout_width="match_parent"
android:layout_heigth="match_parent"
>
<TextView android:id="@+id/txtTerms"
android:layout_width="match_parent"
android:layout_heigth="wrap_content"
android:text="put your terms and conditions here ..."
>
</ScrollView>