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);
}
});
これはうまくいきます。