12

ScrollView 内で TableLayout を使用して、ユーザー操作の結果として時間の経過とともに行が追加された動的テーブルが必要です。これは正常に機能しますが、を使用してテーブルの最後までスクロールしたい場合fullScroll()、常に最後の行が除外されます。つまり、最後の 1 つ前のものが表示されるようにスクロールします。手動でスクロールすると最後の行が表示され、スクロールバーも正しいです。

もちろん、これからより良いレイアウトを作成する方法についての提案は受け付けています。fullScroll()しかし、なぜそのように振る舞うかを理解することに特に興味があります。別のパラメーターを指定するか、まったく別のものを使用する必要がありますか? それとも、新しく追加された行がまだ何らかの形で表示されていないためですか? (もしそうなら、どうすればそれを解決できますか?)または、他の明らかなことを見逃しましたか?

次のコードは、問題を再現します。

TestActivity.java:

package com.example.android.tests;

import java.util.Random;
import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.ScrollView;
import android.widget.TableLayout;
import android.widget.TableRow;
import android.widget.TextView;

public class TestActivity extends Activity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        ((Button) findViewById(R.id.AddRow)).setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                Random rnd = new Random();
                TableRow nr = new TableRow(v.getContext());
                for (int c=0; c<3; c++) {
                    TextView nv = new TextView(v.getContext());
                    nv.setText(Integer.toString(rnd.nextInt(20)-10)); 
                    nr.addView(nv);
                }
                ((TableLayout) findViewById(R.id.Table)).addView(nr);
                // Scrolls to line before last - why?
                ((ScrollView) findViewById(R.id.TableScroller)).fullScroll(View.FOCUS_DOWN);
            }
        });

    }
}

main.xml:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  android:orientation="vertical"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent">
  <Button
    android:text="Add Row"
    android:id="@+id/AddRow"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true" />
  <ScrollView
    android:id="@+id/TableScroller"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_above="@id/AddRow"
    android:layout_alignParentTop="true" >
    <TableLayout
      android:id="@+id/Table"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:stretchColumns="0,1,2" />
  </ScrollView>
</RelativeLayout>

編集:参考までに、Romain Guyのソリューションを次のように実装しました。

TestActivity.java で、以下を置き換えます。

            // Scrolls to line before last - why?
            ((ScrollView) findViewById(R.id.TableScroller)).fullScroll(View.FOCUS_DOWN);

と:

            // Enqueue the scrolling to happen after the new row has been layout
            ((ScrollView) findViewById(R.id.TableScroller)).post(new Runnable() {
                public void run() {
                    ((ScrollView) findViewById(R.id.TableScroller)).fullScroll(View.FOCUS_DOWN);
                }

            });

これはうまくいきます。

4

2 に答える 2

15

fullScroll()を実行している時点では、レイアウトはまだ行われていないため、ScrollViewはテーブルに「古い」サイズを使用します。すぐにfullScroll()を呼び出す代わりに、View.post(Runnable)を使用してください。

于 2010-06-21T21:59:27.673 に答える
2

上記のヒントが役立つと思ったら、ScrollViewをスクロールして特定の子を表示する簡単な実装を次に示します...

a:次のヘルパークラスを準備します

public class ScrollToTrick implements Runnable {

ScrollView scroller;
View       child;

ScrollToTrick(ScrollView scroller, View child) {
    this.scroller=scroller; 
    this.child=child;

}
public void run() {
    scroller.scrollTo(0, child.getTop());
}
}

b)このように呼びます

my_scroller.post(new ScrollToTrick(my_scroller,child_to_scroll_to) );
于 2012-03-22T13:41:10.660 に答える