Android WebView inside ScrollView scrolls only scrollview

前端 未结 7 561
無奈伤痛
無奈伤痛 2020-11-27 02:26

In my app I have a ScrollView that contains some linearviews, some textviews and One Webview, then other linear layouts etc. The problem is that the WebView does not scroll.

7条回答
  •  孤城傲影
    2020-11-27 03:22

    You can change into 3 layouts:

    1. First TextView - header
    2. WebView - main layout
    3. Second TextView - footer


    WebView web = (WebView) findViewById(R.id.webView);
    View header = getLayoutInflater().inflate(R.layout.header_layout, null);
    View footer = getLayoutInflater().inflate(R.layout.foorer_layout, null);
    web.addHeaderView(headerComment);
    web.addFooterView(footerComment);
    

提交回复
热议问题