Huge thanks to @Joseinnewworld for adding 12 fresh #NFTs to his collection 🙌 Your consistency keeps the ecosystem alive and buzzing! 🚀 #eCash $XEC #NFTCommunity #NFTshill #NFTUniverse #CryptoMarket #Cryptonomy pic.twitter.com/0zj7YgBad9
— NFToa (@nftoa_) October 3, 2025
I am displaying text in a TextView that seems too long to fit on one screen. How can I make this one component scrollable?
Solution
Actually you don't need to use ScrollView, but just set the property on TextView like this:
android:scrollbars= "vertical"
Then call the following function in your TextView component via your native code:
yourTextView.setMovementMethod(ScrollingMovementMethod());