0

これは、TextView の XML レイアウトです。

<LinearLayout 
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<ScrollView 
        android:id="@+id/scrollview1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:scrollbars="vertical"
        android:fillViewport="true">
<TextView
        android:id="@+id/tv1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1.0"
        android:typeface="sans"
        android:layout_gravity="center_vertical|left"
        android:textSize="17sp" 
        />
</ScrollView>
</LinearLayout>

テキストは、431 行を含む .txt ファイルから取得されています。ただし、最初の 81 行は画面からはみ出しています (画面の上端からはみ出しています)。私は何を間違っていますか?

.txt ファイルを読み取るコード:

    String l="";
    TextView two=(TextView)findViewById(R.id.tv1);
    InputStream is =getAssets().open("codes1.txt");
    InputStreamReader iz=new InputStreamReader(is);
    BufferedReader bis = new BufferedReader(iz);
    try {
        String text="";
        while((l=bis.readLine())!=null) {
            text=text+l+"\n";
        }
        two.setText(text);
        two.setMovementMethod(new ScrollingMovementMethod());
    } catch(Exception a) { Log.d("error is "+a.toString(),"error"); }
4

1 に答える 1

1

OK、コンテンツはそこにあります。から削除して、この行を削除android:layout_gravity="center_vertical|left"してTextViewみてください

two.setMovementMethod(new ScrollingMovementMethod());あなたのJavaファイルから。

于 2013-06-05T18:03:50.493 に答える