3

在我的应用程序中,我正在进行一些计算。整个布局在 Scrollview 中。

结果显示在顶部。XML 是这样的:

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/back2back"
    >


<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="526dp"
    android:background="@drawable/back4"
    android:orientation="vertical" >

    <TextView
        android:id="@+id/nothing"
        android:layout_width="181dp"
        android:layout_height="51dp"
        android:layout_gravity="center"

        android:textColor="#000000"
        android:textStyle="bold" />

        rest of the xml
    </LinearLayout>
</ScrollView>

所以我希望在按下计算按钮时将屏幕的焦点设置到我的页面顶部(或者在上部文本视图中更具体),以便用户能够看到结果。我在 SO 中进行了搜索,但没有找到类似的东西。

4

1 回答 1

10

如果我理解您的问题,只需致电:

scrollView.scrollTo(0, 0);

在您的计算按钮的 OnClickListener 中。

于 2012-07-04T18:25:06.517 回答