文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android中ViewPager如何使用WebView

2023-05-30 20:58

关注

小编给大家分享一下Android中ViewPager如何使用WebView,相信大部分人都还不怎么了解,因此分享这篇文章给大家参考一下,希望大家阅读完这篇文章后大有收获,下面让我们一起去了解一下吧!

Android 中ViewPager中使用WebView的注意事项

前言:

今天在做项目时遇到了一个小问题

首先使用ViewPager显示多个页面,然后在每个页面上使用Fragment显示数据,其中有一部分数据是通过WebView加载的Html标签。

具体xml布局如下

<?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上方的TextView内容则必须手动将页面往下拉

解决以上问题可以在Scrollview中所使用的LinearLayout添加如下属性:

android:descendantFocusability="blocksDescendants"

以上是“Android中ViewPager如何使用WebView”这篇文章的所有内容,感谢各位的阅读!相信大家都有了一定的了解,希望分享的内容对大家有所帮助,如果还想学习更多知识,欢迎关注编程网行业资讯频道!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯