我们怎么能把scrollview放在android的EditText字段中?

时间:2011-05-24 09:04:19

标签: android android-edittext scrollview

我的应用程序中有条款和条件屏幕。我将条款和条件信息放在EditText字段中。

我的要求:

我想将ScrollView放在EditText内以阅读条款和条件文本(因为文本在ScrollView字段中需要EditText。我怎么能这样做?

2 个答案:

答案 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>