Vì vậy, tôi có một vấn đề hấp dẫn. Mặc dù thực tế là tôi không cuộn chế độ xem của mình theo cách thủ công hoặc theo chương trình, nhưng WebView của tôi đang được tự động cuộn đến sau khi dữ liệu bên trong nó tải.
Tôi có một mảnh vỡ trong một máy ngắm. Khi tôi tải máy nhắn tin lần đầu tiên, nó hoạt động như mong đợi và mọi thứ đều được hiển thị. Nhưng khi tôi "lật trang", dữ liệu sẽ tải và WebView bật lên đầu trang, ẩn các chế độ xem phía trên nó, điều này không mong muốn.
Có ai biết làm thế nào để ngăn chặn điều này xảy ra?
Bố cục của tôi trông giống như vậy:
<?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:background="@color/background" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
<TextView
android:id="@+id/article_title"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:layout_marginBottom="2dp"
android:text="Some Title"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="@color/article_title"
android:textStyle="bold" />
<LinearLayout
android:id="@+id/LL_Seperator"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="5dp"
android:layout_marginBottom="5dp"
android:background="@color/text"
android:orientation="horizontal" >
</LinearLayout>
<WebView
android:id="@+id/article_content"
android:layout_width="match_parent"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/article_link"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp"
android:layout_marginTop="5dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:text="View Full Article"
android:textColor="@color/article_title"
android:textStyle="bold" />
</LinearLayout>
</ScrollView>
Tôi cũng không tập trung vào bất cứ thứ gì. Theo mặc định, nó dường như tự động cuộn đến WebView sau khi tải xong. Làm cách nào để ngăn chặn điều này?