Android 中ViewPager中使用WebView的注意事项
程序员文章站
2024-02-11 17:54:28
android 中viewpager中使用webview的注意事项
前言:
今天在做项目时遇到了一个小问题
首先使用viewpager显示多个页面,然后在每个页面...
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 中自定义ContentProvider与ContentObserver的使用简单实例
-
Android 中ViewPager中使用WebView的注意事项
-
灵活使用Android中ActionBar和ViewPager切换页面
-
Android开发实现webview中img标签加载本地图片的方法
-
Android中ImageView使用网络图片资源的方法
-
解析android中include标签的使用
-
数据泵expdp中query的使用及注意事项
-
Android中ProgressBar的使用-通过Handler与Message实现进度条显示
-
Android 中 WebView 的基本用法详解
-
解析PHP中$_FILES的使用以及注意事项