Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我是 android 新手,我正在开发一个应用程序,是否有任何教程教我如何向我的应用程序添加滚动文本。
我还想使用网站更新文本,即;考虑例如我正在显示某些公司的详细信息,然后我需要从公司网站获取数据。
如果您在滚动视图中添加了带有包装内容的 Textview,则意味着它将自动滚动。textview 属性必须支持多行。
<Scrollveiw> <somelayout> <textview> </textview> </somelayout> </Scrollview>
那个设计应该是这样的。我们有滚动监听器。在滚动监听器的末尾,您可以调用网站并添加网站详细信息。
谢谢