Как предотвратить прокрутку прокрутки в веб-просмотр после загрузки данных? - PullRequest
105 голосов
/ 23 марта 2012

Так что у меня есть захватывающая проблема.Несмотря на то, что я не прокручиваю свое представление вручную или программно, мой WebView автоматически прокручивается после загрузки данных внутри него.

У меня есть фрагмент в окне просмотра.Когда я впервые загружаю пейджер, он работает как положено, и все отображается.Но как только я «переворачиваю страницу», данные загружаются, и веб-представление выскакивает в верхнюю часть страницы, скрывая виды над ним, что нежелательно.1005 *

Мой макет выглядит так:

<?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 после его загрузки.Как мне предотвратить это?

Ответы [ 7 ]

264 голосов
/ 31 января 2013

У меня была та же проблема, после нескольких часов попыток реализовать несколько идей, что в итоге мне помогло, просто добавив атрибут descendantFocusability в ScrollView, содержащий LinearLayout со значением blockDescendants. В вашем случае:

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

У меня не было повторения проблемы с тех пор:)

39 голосов
/ 02 октября 2013

Вы можете просто добавить это в свой LinearLayout: android: focusableInTouchMode = "true". У меня это работает.

 <LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:focusableInTouchMode="true"
    android:orientation="vertical" >
26 голосов
/ 02 июля 2012

Вы должны создать новый класс 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 голосов
/ 04 июня 2014

Добавление этих строк в основной макет решает проблему

android:descendantFocusability="blocksDescendants"
4 голосов
/ 23 декабря 2016

Вероятно, есть люди, у которых та же проблема, что и у меня, поэтому я помогу.

Я пытался поместить android: downndantFocusability = "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: downndantFocusability = "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 */
4 голосов
/ 21 мая 2015

Как это:

<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" >
0 голосов
/ 30 декабря 2012

Мне пришлось использовать полное имя для 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" >
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...