Прокрутить TextView в текстовую позицию - PullRequest
2 голосов
/ 13 марта 2011

Я хочу прокрутить свой TextView, чтобы сделать видимой определенную позицию в тексте.Как я могу это сделать?Я попытался привестиPointIntoView (int offset), но безуспешно.

Исходный код:

public class TextScrollActivity extends Activity {
  public void onCreate (final Bundle savedInstanceState) {
    super.onCreate (savedInstanceState);
    final int position = 500;
    final TextView textView = new TextView (this);
    final ScrollView scrollView = new ScrollView (this);
    scrollView.addView (textView);
    Button button = new Button (this);
    button.setText ("Scroll to " + position);
    LinearLayout layout = new LinearLayout (this);
    layout.setOrientation (LinearLayout.VERTICAL);
    layout.addView (scrollView,
    new LayoutParams (LayoutParams.FILL_PARENT, 200));
    layout.addView (button, new LayoutParams (LayoutParams.FILL_PARENT,
    LayoutParams.WRAP_CONTENT));
    StringBuilder builder = new StringBuilder ();
    for (int i = 0; i < 1000; i++)
      builder.append (String.format ("[ %05d ] ", i));
    textView.setText (builder);
    setContentView (layout);
    button.setOnClickListener (new OnClickListener () {
      public void onClick (View v) {
        System.out.println (textView.bringPointIntoView (position * 10));
        // scrollView.scrollTo (0, position * 10); // no
      }
    });
  }
}

Ответы [ 3 ]

4 голосов
/ 11 апреля 2011

Для тех, у кого возникла та же проблема, я наконец-то сделал собственную реализацию метода takePointIntoView:

  public static void bringPointIntoView (TextView textView,
  ScrollView scrollView, int offset)
  {
    int line = textView.getLayout ().getLineForOffset (offset);
    int y = (int) ((line + 0.5) * textView.getLineHeight ());
    scrollView.smoothScrollTo (0, y - scrollView.getHeight () / 2);
  }

Не стесняйтесь, если у вас есть лучшее решение.

1 голос
/ 14 августа 2011

Просто к сведению тех, кто столкнулся с такой же проблемой, на listView с большим listItems, перегруженному bringPointIntoView можно передать ListView вместо ScrollView и использовать вместо него метод ScrollTosmoothScrollTo.

1 голос
/ 16 мая 2011

Решает ли проблема добавление метода перемещения в текстовое представление?

textView.setMovementMethod(new ScrollingMovementMethod());
...