ScrollView 嵌套WebView 的问题优化
一.布局样式
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@color/graywhite"
android:orientation="vertical">
<LinearLayout
android:id="@+id/ll_pb"
android:layout_width="match_parent"
android:layout_height="40dp"
android:gravity="center"
android:orientation="horizontal"
android:visibility="gone" >
<ProgressBar
android:layout_width="20dp"
android:layout_height="20dp" />
</LinearLayout> <RelativeLayout
android:id="@+id/jg_rl_parent"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="visible">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/position3">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" > <RelativeLayout
android:layout_width="match_parent"
android:layout_height="250dp"
android:background="@color/black" >
<com.facebook.drawee.view.SimpleDraweeView
android:id="@+id/everyday_background"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:actualImageScaleType="centerCrop" />
<LinearLayout
android:id="@+id/ll_knowledge_head_bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:background="@drawable/reading_detail"
android:gravity="center"
android:orientation="horizontal" > <TextView
android:id="@+id/everyday_title"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="15dp"
android:layout_weight="1"
android:textColor="@color/white"
android:textSize="@dimen/font_14" /> </LinearLayout>
<com.ldcang.customview.MyTxVideo
android:id="@+id/my_tx_video"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">
</com.ldcang.customview.MyTxVideo>
<TextView
android:id="@+id/tv_middle_play"
android:layout_width="50dp"
android:layout_height="50dp"
android:background="@drawable/play_start"
android:layout_centerInParent="true"
android:visibility="gone"/>
<ProgressBar
android:id="@+id/progressBar"
android:layout_width="34dp"
android:layout_height="34dp"
android:layout_centerInParent="true"
android:visibility="gone"/>
</RelativeLayout> <WebView
android:id="@+id/everyday_webview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"/> </LinearLayout>
<com.ldcang.utils.Listview
android:id="@+id/everyday_listview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/graywhite"
android:divider="@null">
</com.ldcang.utils.Listview>
<LinearLayout
android:id="@+id/ll_goods"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@color/white">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp"
android:gravity="center_vertical"
android:text="猜你喜欢"
android:textColor="@color/text333"
android:textSize="@dimen/font_14"/>
<View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/graywhite"/>
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"> <LinearLayout
android:id="@+id/ll_collect_image_container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingRight="10dp"
android:orientation="horizontal" />
</HorizontalScrollView> </LinearLayout>
</LinearLayout>
</ScrollView>
<LinearLayout
android:id="@+id/position3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:layout_alignParentBottom="true"
android:orientation="vertical"> <View
android:layout_width="match_parent"
android:layout_height="1px"
android:background="@color/line" /> <LinearLayout
android:layout_width="match_parent"
android:layout_height="43dp"
android:orientation="horizontal"> <LinearLayout
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:orientation="horizontal"> <TextView
android:id="@+id/zm_tv_zan"
android:layout_width="19dp"
android:layout_height="19dp"
android:background="@drawable/liulan_list" /> <TextView
android:id="@+id/everyday_views"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:text="0"
android:textColor="@color/text666"
android:textSize="@dimen/font_14" />
</LinearLayout> <View
android:layout_width="1px"
android:layout_height="match_parent"
android:background="@color/line" /> <LinearLayout
android:id="@+id/ll_collect"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:orientation="horizontal"> <ImageView
android:id="@+id/iv_collect"
android:layout_width="19dp"
android:layout_height="19dp"
android:background="@drawable/guanzhu" /> <TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:text="收藏"
android:textColor="@color/text666"
android:textSize="@dimen/font_14" />
</LinearLayout> <View
android:layout_width="1px"
android:layout_height="match_parent"
android:background="@color/line" /> <LinearLayout
android:id="@+id/everyday_share"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:orientation="horizontal"> <TextView
android:id="@+id/zm_tv_share"
android:layout_width="17dp"
android:layout_height="17dp"
android:background="@drawable/jg_share" /> <TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:text="分享"
android:textColor="@color/text666"
android:textSize="@dimen/font_14" />
</LinearLayout> <View
android:layout_width="1px"
android:layout_height="match_parent"
android:background="@color/line" /> <LinearLayout
android:id="@+id/everyday_pinglun"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:gravity="center"
android:orientation="horizontal"> <TextView
android:id="@+id/textView3"
android:layout_width="18dp"
android:layout_height="18dp"
android:background="@drawable/comment_icon" /> <TextView
android:id="@+id/everyday_comment"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:text="评论"
android:textColor="@color/text666"
android:textSize="@dimen/font_14" />
</LinearLayout> </LinearLayout>
</LinearLayout> <TextView
android:id="@+id/everyday_back"
android:layout_width="30dp"
android:layout_height="30dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="10dp"
android:background="@drawable/attention_back" />
</RelativeLayout>
</LinearLayout> 这个我布局我手机没问题就没注意,以为没有问题,后面部分手机会有很大的空白区域,滑动控件冲突了。以后遇到两个滑动控件嵌套都会有问题,必须自定义一个滑动控件,我认为最好是自定义嵌套的内部滑动控件,感觉比较简单。 二。自定义WebView
public class MyWebView extends WebView {
public MyWebView(Context context) {
super(context);
} public MyWebView(Context context, AttributeSet attrs) {
super(context, attrs);
} public MyWebView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
} protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
heightMeasureSpec = MeasureSpec.makeMeasureSpec(
Integer.MAX_VALUE >> 2, MeasureSpec.AT_MOST);
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
}
主要复写onMeasure()方法 重新计算一下高度即可,然后在修改完的时候发现会滚动到WebView的位置
继续修改贴上部分代码
public class EveryDayDetailActivity extends BaseActivity implements OnClickListener {
@Override
protected void initView() {
// TODO Auto-generated method stub
setContentView(R.layout.everyday_detail);
jg_rl_parent = (RelativeLayout) findViewById(R.id.jg_rl_parent);
ll_pb = (LinearLayout) findViewById(R.id.ll_pb);
back = (TextView) findViewById(R.id.everyday_back);//返回 listView = (Listview) findViewById(R.id.everyday_listview); /** 有视频则显示视频播放 */ webView = (WebView) findViewById(R.id.everyday_webview);
title = (TextView) findViewById(R.id.everyday_title);
imageView = (SimpleDraweeView) findViewById(R.id.everyday_background);
/**
* 改为自定义控件自动滚动到了WebView,添加焦点不让滚动到WebView
* */
imageView.setFocusable(true);
imageView.requestFocus();
imageView.setFocusableInTouchMode(true); ll_knowledge_head_bottom = (LinearLayout) findViewById(R.id.ll_knowledge_head_bottom);
mMyTxVideo = (MyTxVideo) findViewById(R.id.my_tx_video);//视频空间
tv_middle_play = (TextView) findViewById(R.id.tv_middle_play);//播放按钮控件
mProgressBar = (ProgressBar) findViewById(R.id.progressBar);//加载转圈 popshare = getLayoutInflater().inflate(R.layout.popupwindow_share, null);//分享弹框布局 /** 商品和拍卖 */
ll_goods = (LinearLayout)findViewById(R.id.ll_goods);//商品和拍卖父控件
ll_collect_image_container = (LinearLayout)findViewById(R.id.ll_collect_image_container);//商品和拍卖控件 /** 底部 */
views = (TextView) findViewById(R.id.everyday_views);
share = (LinearLayout) findViewById(R.id.everyday_share);
pinglun = (LinearLayout) findViewById(R.id.everyday_pinglun);
everyday_comment = (TextView) findViewById(R.id.everyday_comment);
iv_collect = (ImageView) findViewById(R.id.iv_collect);
ll_collect = (LinearLayout) findViewById(R.id.ll_collect);
}
}
把焦点给上面的任何一个控件就可以了
/**
* 改为自定义控件自动滚动到了WebView,添加焦点不让滚动到WebView
* */
imageView.setFocusable(true);
imageView.requestFocus();
imageView.setFocusableInTouchMode(true);
ScrollView 嵌套WebView 的问题优化的更多相关文章
- Android scrollview嵌套webview滑动冲突的解决方案
在Android开发中有时我们需要在scrollview中嵌套webview这时你会发现这两者的滑动事件产生了冲突导致:webview很难被滑动,即使被滑动了一点也非常不顺畅.解决方案也比较简单只需要 ...
- ScrollView嵌套RecyclerView时滑动出现的卡顿
原文连接:http://zhanglu0574.blog.163.com/blog/static/113651073201641853532259/ 现象: 一个界面有多个RecyclerView ...
- 关于ScrollView嵌套ListView问题
Android开发之ScrollView中嵌套ListView的解决方案 原文:http://blog.csdn.net/minimicall/article/details/40983331 ...
- [Android Pro] ScrollView嵌套RecyclerView时滑动出现的卡顿
reference to : http://zhanglu0574.blog.163.com/blog/static/113651073201641853532259/ ScrollView嵌套Rec ...
- (转)ViewPager,ScrollView 嵌套ViewPager滑动冲突解决
ViewPager,ScrollView 嵌套ViewPager滑动冲突解决 本篇主要讲解一下几个问题 粗略地介绍一下View的事件分发机制 解决事件滑动冲突的思路及方法 ScrollView 里面嵌 ...
- 四种方案解决ScrollView嵌套ListView问题(转)
以下文章转自@安卓泡面 在工作中,曾多次碰到ScrollView嵌套ListView的问题,网上的解决方法有很多种,但是杂而不全.我试过很多种方法,它们各有利弊. 在这里我将会从使用ScrollVie ...
- Scrollview 嵌套 RecyclerView 及在Android 5.1版本滑动时 惯性消失问题
标签:scrollview android 滑动 嵌套 scrollview 嵌套recyclerview 时,recyclerview不显示,这就需要我们自己计算recyclerview ...
- RecyclerView和ScrollView嵌套使用
我们的recyclerView有多个layoutmanager,通过重写layoutmanager的方法就可以让recyclerView和ScrollView嵌套了.但是请注意,如果recyclerV ...
- 解决ScrollView嵌套ViewPager出现的滑动冲突问题
/** * 解决ScrollView嵌套ViewPager出现的滑动冲突问题 */ public class ScrollView1 extends ...
随机推荐
- 为PHPcms扩展json采集
最近想用phpcms做个新闻类网站,做采集的时候发现没有json的选项,于是自己动手,增加了采集json选项. 由于有的网站并不是纯json传输,而是jsonp,因此我把json,jsonp数据都当做 ...
- STM32三种启动模式 boot0 boot1
STM32三种启动模式对应的存储介质均是芯片内置的,它们是: 1)用户闪存=芯片内置的Flash.2)SRAM=芯片内置的RAM区,就是内存啦.3)系统存储器=芯片内部一块特定的区域,芯片出厂时在这个 ...
- python面试题解析(前端、框架和其他)
答: HTTP是一个属于应用层的面向对象的协议,由于其简捷.快速的方式,适用于分布式超媒体信息系统.它于1990年提出,经过几年的使用与发展,得到不断地完善和扩展.目前在WWW中使用的是HTTP/1. ...
- Diango 一——URL
内容概要 1.web框架初识 2.MTV模式 3.Django创建流程和命令行工具 4.配置文件 settings 5.视图函数 views 6.路由系统 URL 7.模板系统 templat ...
- Selenium WebDriver- 隐式等待
隐式等待是只要有一个元素在设置的时间内没有找到,就会报超时 隐式等待是一个全局的设置,只要放在找东西语句的前面,它后面的找东西的语句都会默认等待设置的时间(这里是10秒),这是死等,除非立刻找到了,5 ...
- python + selenium - selenium常用元素定位
1. Chrome定位工具 打开Chrome浏览器,按F12会弹出开发者工具选项,选择Elements: 1)鼠标点击最左边箭头 2)鼠标滑动到页面中你要操作的元素,单击一下 3)对应的html元素内 ...
- PHP smarty模版引擎基本安装
环境: PHP5.2 以上版本 先去官网下载smarty模版引擎的库文件到你的电脑或服务器上 smarty官方网站库文件下载地址: https://www.smarty.net/download 下 ...
- aiomysql inserting operation failed !
emotions: those days,i am using aiomysql(python3.5) to acess my database .But a 'strange' problem ma ...
- [python IO学习篇] 补充.py文件是中文, .ini文件内容是中文
python 代码文件的编码.py文件默认是ASCII编码,中文在显示时会做一个ASCII到系统默认编码的转换,这时就会出错:SyntaxError: Non-ASCII character.需要在代 ...
- java环境配置classpath和path变量的作用及设置方法
1.path:指定cmd中命令执行文件所在的路径.比如javac.java两个可执行文件在jdk的bin目录下,如果path值含有这个bin目录,在cmd下执行这两个命令的时候就会到path指定的目录 ...