จะป้องกันไม่ให้ scrollview เลื่อนไปที่ webview หลังจากโหลดข้อมูลได้อย่างไร?


107

ดังนั้นฉันจึงมีปัญหาที่น่าสนใจ แม้ว่าฉันจะไม่ได้เลื่อนมุมมองด้วยตนเองหรือโดยใช้โปรแกรม แต่ WebView ของฉันจะถูกเลื่อนไปโดยอัตโนมัติหลังจากที่ข้อมูลภายในโหลดขึ้น

ฉันมีส่วนใน viewpager เมื่อฉันโหลดเพจเจอร์ครั้งแรกมันทำงานตามที่คาดไว้และทุกอย่างจะปรากฏขึ้น แต่เมื่อฉัน "พลิกหน้า" ข้อมูลจะโหลดขึ้นและ WebView จะปรากฏขึ้นที่ด้านบนของหน้าโดยซ่อนมุมมองไว้ด้านบนซึ่งเป็นสิ่งที่ไม่พึงปรารถนา

ไม่มีใครรู้วิธีป้องกันไม่ให้เกิดขึ้น

เค้าโครงของฉันมีลักษณะดังนี้:

<?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 โดยอัตโนมัติหลังจากโหลดเสร็จแล้ว ฉันจะป้องกันสิ่งนี้ได้อย่างไร?


ทำไมคุณถึงต้องการ ScrollView เนื่องจาก WebView สามารถเลื่อนได้?
znat

เพื่อไม่ให้บางแง่มุมจากมุมมองเว็บแทนที่จะแสดงเป็น HTML เพื่อความเร็วและคุณภาพ
Navarr

1
mjp66 มีคำตอบที่ดีที่สุด - คุณควรยอมรับคำตอบของเขา
AndrewS

คำตอบ:


43

คุณสามารถเพิ่มสิ่งนี้ลงใน LinearLayout: android: focusableInTouchMode = "true" มันใช้ได้กับฉัน

 <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:focusableInTouchMode="true"
    android:orientation="vertical" >

4
ทำงานได้โดยไม่มีผลข้างเคียง!
Vaibhav Jani

267

ฉันมีปัญหาเดียวกันหลังจากชั่วโมงของการพยายามคิดหลายสิ่งที่ในที่สุดก็ทำงานให้ฉันเป็นเพียงการเพิ่มdescendantFocusabilityแอตทริบิวต์ไป ScrollView ประกอบด้วย LinearLayout blocksDescendantsมีค่า ในกรณีของคุณ:

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    android:descendantFocusability="blocksDescendants" >

ยังไม่มีปัญหาเกิดขึ้นอีกเลยตั้งแต่นั้นมา


3
สิ่งนี้มีผลกระทบในทางลบต่อการเข้าถึงการควบคุมเหล่านี้หรือไม่
Cory Trese

34
โปรดทราบว่าหากมีมุมมองย่อย ๆ เช่น EditText วิธีนี้จะทำให้ไม่สามารถแก้ไขได้
djhworld

2
คำถาม / คำตอบนี้จะไม่เกิดขึ้นเมื่อคุณค้นหาคำว่า ScrollView Webview autoscroll และควร บางทีความคิดเห็นนี้จะช่วยได้! มีปัญหาเดียวกันกับการใช้ WebViewFragment และไม่พบคำถามนี้แม้ว่าจะมีการค้นหาจำนวนมากจนกระทั่งฉันโพสต์คำถามของตัวเอง (ตอนนี้ถูกลบไปแล้ว)
Colin M.

1
การทำงานกับโปรเจ็กต์ Xamarin Android มีปัญหาในการเลื่อนอัตโนมัติในมุมมองแบบเลื่อนที่มีมุมมองตารางหลายแบบซึ่งเติมข้อมูลแบบอะซิงโครนัสกับรูปภาพที่ดาวน์โหลด โซลูชันนี้ทำงานได้อย่างสมบูรณ์แบบมากฉันมีปัญหาที่จะเชื่อตั้งแต่แรกเห็นและต้องทดสอบอีกครั้ง
YumeYume

1
ปัญหาเดียวกันนี้ก็เกิดขึ้นกับโฆษณาRecyclerViewเช่นกัน วิธีแก้ปัญหาของคุณก็ใช้ได้เช่นกัน :)
Minas Mina

26

คุณควรสร้างคลาสใหม่ขยาย ScrollView จากนั้นแทนที่ requestChildFocus:

public class MyScrollView extends ScrollView {

    @Override 
    public void requestChildFocus(View child, View focused) { 
        if (focused instanceof WebView ) 
           return;
        super.requestChildFocus(child, focused);
    }
}

จากนั้นในเค้าโครง xml ของคุณโดยใช้:

<MyScrollView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/background" >

ที่เหมาะกับฉัน ScrollView จะไม่เลื่อนไปที่ WebView โดยอัตโนมัติอีกต่อไป


5
ผู้ก่อสร้างที่จำเป็นด้วย: public ExtendedScrollView(Context context) { super(context); } public ExtendedScrollView( Context context, AttributeSet attributeSet) { super(context, attributeSet); } public ExtendedScrollView( Context context, AttributeSet attributeSet, int defStyle) { super(context, attributeSet, defStyle); }
Erik B

5

การเพิ่มบรรทัดเหล่านี้ในเค้าโครงหลักช่วยแก้ปัญหาได้

android:descendantFocusability="blocksDescendants"

4

แบบนี้:

<com.ya.test.view.MyScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:descendantFocusability="beforeDescendants"
        android:focusable="true"
        android:focusableInTouchMode="true" >

4

อาจมีคนที่มีปัญหาเดียวกันกับฉันดังนั้นฉันจะช่วย

ฉันกำลังพยายามใส่android: inheritantFocusability = "beforeDescendants"ใน ScrollView หลักของฉันดังต่อไปนี้:

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:descendantFocusability="beforeDescendants">
    /*my linearlayout or whatever to hold the views */

และมันไม่ได้ผลดังนั้นฉันจึงต้องสร้าง RelativeLayout ให้เป็นพาเรนต์ของ ScrollView และวางandroid: inheritantFocusability = "beforeDescendants"ในพาเรนต์ด้วย

ดังนั้นฉันจึงแก้ไขโดยทำสิ่งต่อไปนี้:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="blocksDescendants">

<ScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent">
/*my linearlayout or whatever to hold the views */

-2

ฉันต้องใช้ชื่อแบบเต็มสำหรับ MyScrollView มิฉะนั้นฉันจะได้รับข้อยกเว้นที่เพิ่มขึ้น

<com.mypackagename.MyScrollView 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@color/background" >
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.