1

我已经在谷歌上搜索了一个关于在同一页面上通过 ID 滚动到元素但没有成功的示例。我想知道如何使用以下示例完成?

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout
       android:layout_width="fill_parent"
       android:layout_height="fill_parent" >

    <Button 
       android:id="@+id/pressMe"
       android:layout_height="wrap_content"
       android:layout_width="wrap_content"
       android:text="Press me to scroll to A">

    <ImageView
       android:id="@+id/scrollToMe"
       android:layout_height="100dp"
       android:layout_width="fill_parent"
       android:layout_marginTop="2000dp"
       android:background="#f00">

    </LinearLayout>

</ScrollView>
4

1 回答 1

1

您可以专注于该视图,我认为它会自动滚动到该视图。

我相信您还可以获得所需视图的坐标并滚动到它们。

于 2012-06-18T11:43:48.843 回答