我有一个 ScrollView,我想滚动到一个子元素(一个相对视图),我知道如何滚动到 X/Y 位置,但是如何知道我的相对视图在 Scroll View 中的位置?或者也许可以直接滚动到这个相对视图?
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
....
<RelativeLayout
android:id="@+id/box"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
....
</ScrollView>
我想滚动到@+id/box。是否可以?