我正在使用滚动活动。我的content_scrolling.xml中有很少的TextView和按钮,我想在单击特定按钮时以编程方式滚动/跳转到特定的文本视图。
另外,我不想使用涉及x-y坐标的函数。
基本上,我不知道该按钮的OnClick(View v)功能该怎么做。
我的content_scrolling.xml
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.admin.test2.ScrollingActivity"
tools:showIn="@layout/activity_scrolling"
android:id="@+id/nsv">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="20dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/l1"
android:paddingLeft="40dp">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text1"
android:id="@+id/b1" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text2"/>
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text3"
android:id="@+id/b3" />
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text1"
android:id="@+id/t1"
android:textSize="50dp"
android:paddingTop="40dp"
android:layout_below="@+id/l1" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text2"
android:id="@+id/t2"
android:textSize="50dp"
android:layout_below="@id/t1"
android:paddingTop="@dimen/app_bar_height"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="text3"
android:id="@+id/t3"
android:textSize="50dp"
android:layout_below="@id/t2"
android:paddingTop="@dimen/app_bar_height"/>
</RelativeLayout>
</android.support.v4.widget.NestedScrollView>
答案 0 :(得分:1)
尝试使用ScrollView的scrollTo(x,y)方法。
your_scrollview.scrollTo(0, your_TextView.getBottom());
your_TextView是要滚动到它的textview。