我们如何在android中的EditText字段中放置scrollview?
我的应用程序中有条款和条件屏幕。我将条款和条件信息放入 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您不应将
EditText
用于阅读目的。在ScrollView
中使用TextView
:You should't use
EditText
for reading purposes. UseTextView
insideScrollView
:您可以简单地在 TextView 中显示您的条件和条款,并且要使用滚动,您可以将 TextView 放入 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 :