程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> java-ScrollView 滾動到某個指定 ID 的 View

java-ScrollView 滾動到某個指定 ID 的 View

編輯:編程綜合問答
ScrollView 滾動到某個指定 ID 的 View

我想通過ID(也就是View),進行 ScrollView 的滾動,但是沒有成功。用下面的例子如何實現呢?

<?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>

最佳回答:


你可以關注那個 view,我認為它會自動滾動。
你也可以獲得所需要 view 的坐標,滾動到指定的位置。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved