4

個々の単語をクリックできるように、linkmovementmethod で textview を使用するコードがいくつかあります。

しかし、本当に必要なのはスクロール移動方法です。これを行うと、個々のスパンされたセグメントはクリックできなくなります。

残念ながら、これは、水平スクロール ( android:scrollHorizontally="true") が指定されていても、垂直スクロールを使用することを意味します。

個々のスパン ワードで onClick をキャッチする機能を保持し、垂直方向にスクロールできるようにする方法を見つけようとしています。

両方の長所を活かす方法について誰かアドバイスをいただけますか?

    String page = getPage();
    textView.setMovementMethod(LinkMovementMethod.getInstance());
    textView.setText(page, BufferType.SPANNABLE);


    Spannable ssPage = (Spannable) textView.getText();
    Integer[] indices = getSpaceIndices(textView.getText().toString(), ' ');

    int start = 0;
    int end = 0;
      // to cater last/only word loop will run equal to the length of indices.length
    for (int i = 0; i <= indices.length; i++) {
        ClickableSpan clickSpan = new ClickableSpan() {
            @Override
            public void onClick(View widget) {
                TextView tv = (TextView) widget;
                String s = tv
                        .getText()
                        .subSequence(tv.getSelectionStart(),
                                tv.getSelectionEnd()).toString();
                Log.d("called", s);
                Speak (s);

                //textView.scrollBy(tv.getWidth(), tv.getHeight());
            }

            public void updateDrawState(TextPaint ds) {
                 super.updateDrawState(ds);
                 ds.setUnderlineText(false);
            }
        };
       // to cater last/only word
        end = (i < indices.length ? indices[i] : ssPage.length());
        ssPage.setSpan(clickSpan, start, end,
                Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
        start = end + 1;
    }

レイアウト:

    <TextView
    android:id="@+id/textView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:alpha="245"
    android:ellipsize="end"
    android:gravity="top"
    android:paddingBottom="15dip"
    android:scrollHorizontally="true"

    android:scrollbars="horizontal"
    android:text="@string/hello_world"
    android:textColorLink="@android:color/black"
    android:textSize="20dip"
    tools:context=".ReadActivity" />
4

1 に答える 1