इसलिए मुझे एक आकर्षक समस्या है। इस तथ्य के बावजूद कि मैं मैन्युअल रूप से या प्रोग्रामेटिक रूप से मेरे विचार को स्क्रॉल नहीं कर रहा हूं, मेरे वेबव्यू को अपने आप लोड होने के बाद डेटा के बाद स्क्रॉल किया जा रहा है।
मुझे एक दृश्यदर्शी में एक टुकड़ा मिला है। जब मैं पहली बार पेजर लोड करता हूं, तो यह अपेक्षित रूप से काम करता है और सब कुछ दिखाया जाता है। लेकिन एक बार जब मैं डेटा लोड करता हूं तो "पेज को फ्लिप करता हूं" और वेबव्यू पृष्ठ के शीर्ष पर पॉप अप करता है, इसके ऊपर के विचारों को छिपाता है, जो अवांछनीय है।
क्या कोई जानता है कि ऐसा होने से कैसे रोका जाए?
मेरा लेआउट इस तरह दिखता है:
<?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>
मैं भी किसी चीज पर ध्यान नहीं दे रहा हूं। डिफ़ॉल्ट रूप से, यह लोड होने के बाद WebView को स्वचालित रूप से स्क्रॉल करता है। मैं इसे कैसे न होने दूँ?