3

2〜3ページの長さのテキストを表示したいのですが、スクロールビューを使用しようとしましたが、テキストが途切れてしまいます。開発は初めてです。簡単な例を挙げてください。ありがとうございます。

4

3 に答える 3

11

XMLで、次のTextViewを記述します。

<TextView
        android:id="@+id/txtDetails"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:maxLines="7"
        android:scrollbars="vertical"
        android:text="TextView"
 />

そして、にActivity、これを書いてください:

TextView txtDetails = (TextView) findViewById(R.id.txtDetails);
txtDetails.setText("Your Text");
txtDetails.setMovementMethod(new ScrollingMovementMethod());

これにより、のテキストがスクロールされTextViewます。書き込む必要はありませんScrollView

于 2012-07-21T05:45:44.433 に答える
4

テキストが途切れるということは、あなたが直面している問題が何であるかを意味します。次のコードを試してください。できます.....

xmlコードの使用:

  <?xml version="1.0" encoding="utf-8"?>
  <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/scrollView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >

    <TextView
        android:id="@+id/textView1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:text="HERE I TOOK NEARLY 3-4 PAGES OF DOCUMENT. IT WORKED" />

</ScrollView>

動的手段を作成している場合は、次のコードに従ってください:main.java:

oncreate()
{
    ScrollView sv=(ScrollView)findViewById(R.id.scrollView1);
    TextView tv=new TextView(this);
    tv.setText("just keep the text what you want here");
    sv.addView(tv);

}

xmlを次のように変更します。

main.xml

  <?xml version="1.0" encoding="utf-8"?>
  <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/scrollView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" > 
</ScrollView>

このコードを試してください。できます....

于 2012-07-21T05:29:44.097 に答える
4

これは機能します。秘訣は、スクロールビュー内でスクロールしたいものを取得することです。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <ScrollView
        android:id="@+id/scrollView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent" >

            <TextView
                android:id="@+id/textView1"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:text="@string/text" />

        </LinearLayout>
    </ScrollView>

</RelativeLayout>
于 2012-07-21T05:42:41.003 に答える