How to make the scrollView automatically scrolls to the last added value/text

rmaik

i have a layout with scrollView, the scrollView area is to be populated frequently with some text. what I want to do it, to make the scrollView scrolls automatically the last added message/text.

I have checked Android dev and i am not sure whther or not :scrollbarStyle is the correct property. kindly help regarding this issue.

Batuhan Coşkun

Try this:

scrollView.post(new Runnable() {            
    @Override
    public void run() {
        scrollView.fullScroll(View.FOCUS_DOWN);              
    }
});

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

How to make the scrollView automatically scrolls to the last added value/text

From Dev

How do I make my scrollview automatically scroll down when text is added?

From Dev

Issue of horizontal scrollview automatically scrolls on Edittext focus

From Dev

Android how to react when user scrolls scrollview

From Dev

scrollview scrolls up while accessing last component of view controller

From Dev

How to make the ListView scroll vertically up automatically when items are added?

From Dev

how to make jquery check the last value added in a form?

From Dev

.htaccess Redirect issue: last parameter added automatically

From Dev

How to make a Horizontal ScrollView

From Dev

Recyclerview make the last added item be the selected item?

From Dev

How can I make controls added to existing mark-up be automatically hooked up to the code behind?

From Dev

Activity automatically scrolls to the middle

From Dev

page automatically scrolls to cfgrid

From Dev

page automatically scrolls to cfgrid

From Dev

How can I make the DataGridView select and focus on the last row I added to it?

From Dev

ScrollView auto scrolls to selectable TextView

From Dev

scroll the view simultaneously as the scrollView scrolls

From Dev

ScrollView auto scrolls to selectable TextView

From Dev

Android: ScrollView scrolls to the top inadvertently

From Dev

How to make scrollView 'bounce' on tap

From Dev

How to make objects be in the bottom of a scrollview

From Dev

How to automatically scroll down in a Kivy ScrollView?

From Dev

How to focus last object in scrollview in unity

From Dev

How are Delphi units automatically added when a component is added to a form?

From Dev

How to make added PATH permanent

From Dev

How is this piece of VB code getting added automatically?

From Dev

How to make a banner image that scrolls but the size remains fixed

From Dev

UIScrollview - how to make subview smaller as it scrolls off screen

From Dev

Android Emulator automatically scrolls down

Related Related

  1. 1

    How to make the scrollView automatically scrolls to the last added value/text

  2. 2

    How do I make my scrollview automatically scroll down when text is added?

  3. 3

    Issue of horizontal scrollview automatically scrolls on Edittext focus

  4. 4

    Android how to react when user scrolls scrollview

  5. 5

    scrollview scrolls up while accessing last component of view controller

  6. 6

    How to make the ListView scroll vertically up automatically when items are added?

  7. 7

    how to make jquery check the last value added in a form?

  8. 8

    .htaccess Redirect issue: last parameter added automatically

  9. 9

    How to make a Horizontal ScrollView

  10. 10

    Recyclerview make the last added item be the selected item?

  11. 11

    How can I make controls added to existing mark-up be automatically hooked up to the code behind?

  12. 12

    Activity automatically scrolls to the middle

  13. 13

    page automatically scrolls to cfgrid

  14. 14

    page automatically scrolls to cfgrid

  15. 15

    How can I make the DataGridView select and focus on the last row I added to it?

  16. 16

    ScrollView auto scrolls to selectable TextView

  17. 17

    scroll the view simultaneously as the scrollView scrolls

  18. 18

    ScrollView auto scrolls to selectable TextView

  19. 19

    Android: ScrollView scrolls to the top inadvertently

  20. 20

    How to make scrollView 'bounce' on tap

  21. 21

    How to make objects be in the bottom of a scrollview

  22. 22

    How to automatically scroll down in a Kivy ScrollView?

  23. 23

    How to focus last object in scrollview in unity

  24. 24

    How are Delphi units automatically added when a component is added to a form?

  25. 25

    How to make added PATH permanent

  26. 26

    How is this piece of VB code getting added automatically?

  27. 27

    How to make a banner image that scrolls but the size remains fixed

  28. 28

    UIScrollview - how to make subview smaller as it scrolls off screen

  29. 29

    Android Emulator automatically scrolls down

HotTag

Archive