0

我在 xml 中创建了一个滚动视图..我将滚动视图的高度设置为包装内容...我以编程方式向这个滚动视图添加一个线性布局我的问题是当我们向我想要的线性布局添加更多内容时聚焦滚动视图中的最后一个元素?

这是我的代码..

<ScrollView
        android:id="@+id/ScrollView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1.0"
        android:background="#ffffff"
        android:fillViewport="true"
        android:scrollbarAlwaysDrawVerticalTrack="true"
        android:scrollbars="vertical" >

        <LinearLayout
            android:id="@+id/layoutMessage"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_below="@+id/linearLayout1"
            android:layout_weight="1"
            android:background="#ffffff"
            android:orientation="vertical"
             >
        </LinearLayout>



    </ScrollView>
4

1 回答 1

6

在线性布局中添加行后,只需使用这行代码即可享受:

yourScrollView.fullScroll(ScrollView.FOCUS_DOWN);

你也可以使用这个:

yourScrollView.postDelayed(new Runnable() {
    @Override
    public void run() {
        scroll.fullScroll(ScrollView.FOCUS_DOWN);
    }
}, 600);
于 2012-12-15T12:42:17.353 回答