我们如何在android中的EditText字段中放置scrollview?

发布于 2024-11-09 12:40:15 字数 241 浏览 0 评论 0原文

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

我的要求:

我想将ScrollView放入EditText中以读取条款和条件文本(因为文本是modr我需要ScrollViewEditText 字段中的 code>)。我该怎么做?

There is Terms&Conditions screen in My application. I am putting Terms&conditions information in EditText field.

My Requirment:

I want to put ScrollView inside EditText to read terms and conditions text (since text is modr i need ScrollView in EditText field). How can I do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

萤火眠眠 2024-11-16 12:40:15

您不应将 EditText 用于阅读目的。在 ScrollView 中使用 TextView

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

You should't use EditText for reading purposes. Use TextView inside 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>
半窗疏影 2024-11-16 12:40:15

您可以简单地在 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>

you can simply display your conditions and terms in a TextView, and to use scrolling ,you can just put your TextView in a ScrollView like this :

<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>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文