データが読み込まれた後、scrollviewがwebviewにスクロールしないようにするにはどうすればよいですか?


107

だから私は興味深い問題を抱えています。ビューを手動またはプログラムでスクロールしていませんが、内部のデータが読み込まれた後、WebViewが自動的にスクロールされます。

ビューページャーにフラグメントがあります。最初にページャーをロードすると、期待どおりに動作し、すべてが表示されます。しかし、「ページをめくる」と、データが読み込まれ、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に自動的にスクロールするように見えます。これを防ぐにはどうすればよいですか?


WebViewがスクロール可能なのに、なぜScrollViewが必要なのですか?
znat

HTMLとしてレンダリングするのではなく、一部のアスペクトをWebビューから除外します。スピードと品質のために。
Navarr 2012

1
mjp66がベストアンサーです。彼のアンサーを受け入れる必要があるかもしれません
AndrewS 2013年

回答:


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 2014年

34
EditTextのような子ビューがある場合、このメソッドはそれらを編集不可能にすることに注意してください。
djhworld 2014年

2
ScrollView Webview autoscrollという単語を検索しても、この質問/回答は表示されません。たぶんこのコメントが役立つでしょう!WebViewFragmentを使用した場合と同じ問題があり、何度も検索しても自分の質問(現在は削除済み)を投稿するまでこの質問は見つかりませんでした。
コリン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

たぶん同じ問題を抱えている人もいるので、手伝います。

次のように、メインのScrollView にandroid:descendantFocusability = "beforeDescendants"を配置しようとしました:

<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:descendantFocusability = "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.