我希望有一个动态表,在ScrollView中使用TableLayout,在用户交互的结果中随时间添加行。这工作正常,但是当我想使用fullScroll()
滚动到表的末尾时,它总是省略最后一行;也就是说,它滚动使得最后一个之前的那个可见。手动滚动时最后一行是可见的,滚动条也是正确的。
我当然乐于接受有关如何更好地布局的建议;但我特别感兴趣的是理解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);
}
});
哪种方法正常。
答案 0 :(得分:15)
当您执行fullScroll()时,布局尚未发生,因此ScrollView使用表的“旧”大小。不要立即调用fullScroll(),而是使用View.post(Runnable)。
答案 1 :(得分: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) );