2

Hi i am new to android and i am developing an app are there any tutorials which teach me on how to add scrolling text to my app.

I also want to update the text using a website ie; consider for example i am displaying the details of some company then i need to get the data from the companies website.

user1844638
  • 966
  • 3
  • 21
  • 47

1 Answers1

1

Inside the Scroll view if you are added the Textview with the wrap content means it will get scroll automatically. the textview attributes must be supports multiline .

<Scrollveiw>
<somelayout>
<textview> </textview>
</somelayout>
</Scrollview>

that design should be like that. we have scroll listener.. at the end of scroll listener you can call website and add the website details.

Thanks

itsrajesh4uguys
  • 4,420
  • 3
  • 18
  • 31