Linked Questions
92 questions linked to/from Making TextView scrollable on Android
1 vote
2 answers
274 views
Why Linearlayout needs to be wrapped in scrollview to make it scrollable.?
Why can't setting the view's xml attribute android:scrollbars="horizontal|vertical" make LinearLayout scrollable.?
2 votes
1 answer
423 views
Android, horizontal scroller in a textView
I want the text in a button to scroll...so for this i am using Text View on the button. I have set following attributes in the layout. but it's not working. I am using this in a RelativeLayout...can ...
1 vote
3 answers
414 views
Aligning views with views outside the RelativeLayout
I am designing a table using RelativeLayout in Android and add entries programmically. The result pleases me so far: The layout code is <RelativeLayout android:id="@+id/table_relativelayout" ...
1 vote
1 answer
410 views
Automatic horizontal scroll in textview with layout_weight
I have been looking at other threads but I couldn't find an answer so here comes my question: Is it possible to create a automatically horizontal scrolling TextView with a button to the right of it ...
0 votes
1 answer
359 views
Automatic scrolling of contents of a text view in scroll in a circular fashion Android
I'm building an application that takes data and appends the data in a textview. I want the text to be rotating in a vertical style(just as automatic horizontal scrolling ,but I need it to be in ...
1 vote
0 answers
330 views
Autoscroll textview in android studio?
I made many searches for finding a way to scroll textview vertically . But could not find any way. My app is for reading puposes so i need automatic scroll textview vertically Please can you help ...
1 vote
1 answer
241 views
TextView inside RecyclerView not scrolling
I have a TextView that is inside a RecyclerView and those are both inside a fragment. When I try to scroll the Textview it just scrolls the RecyclerView instead. Fragment Code <?xml version="1....
2 votes
1 answer
242 views
How to update the scrolling text in my activity from the web?
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 ...
1 vote
2 answers
190 views
How can we use TextViews and fonts correctly?
When we have a TextView with a text of a certain size, it seems that if we add padding to the enclosing layout then the text wraps around to remain the same font size. But does this mean that setting ...
1 vote
1 answer
278 views
Create textview scroll vertical with media player
I have a media player to play mp3 file and a text view show content of song mp3. Now i want text view can scroll vertical when mp3 run. How I can do it?
5 votes
1 answer
2k views
How to enable 'fling scrolling' in a TextView
My TextView scrolls only when the finger is in contact with the screen and only for the distance which the finger moved. How to enable fling scrolling in the TextView? <TextView android:id="@+...
2 votes
3 answers
204 views
formatted html text (Spannable) dosen't fully appear inside textview and scrollview
I am trying to add privacy policy page in my app, the whole page is html content, and I used this method to make text scrollable but the problem is the full text dosen't appear inside textview and I ...
0 votes
3 answers
186 views
Android textview that contain lot of text
Hy! I am working on Android app for Cars where I want to show news of car. So I have 50 lines of text, I want to put all that text in one activity so u can scroll and read that text. Should I use ...
0 votes
2 answers
228 views
How to scroll an EditText to the very top of the layout in a fragment?
So I have an activity with some EditTexts and ChipsInputs, I want these to scroll to the very top when active so my filterable list has room to show up. It works perfectly with the following structure....
0 votes
1 answer
166 views
Can't make ScrollView fill whole parent in a popup
I'm trying to make a help popup. Since the help tips will be different according to which screen you click the help button from, I want to put the text inside a scroll just in case. My layout looks ...