如何获取WebView中页面的Title信息

如何获取WebView中页面的Title信息,第1张

我发现没有办法从webView控件中直接提取内容,因此我写了一个>

 获取 RecyclerView 的滑动距离:

滑动到一定程度后清零是因为 getChildAt(0) 获得的是第一个可见view 用LinearLayoutManager的recyclerview测试了一下确实如此。

如果LayoutManager用的是LinearLayoutManager 可以用下面的办法,还能向下滑动多少 @return / private int getDistance() { LinearLayoutManager layoutManager = (LinearLayoutManager) getLayoutManager(); View firstVisibleItem = thisgetChildAt(0); int firstItemPosition = layoutManagerfindFirstVisibleItemPosition(); int itemCount = layoutManagergetItemCount(); int recyclerviewHeight = thisgetHeight(); int itemHeight = firstVisibleItemgetHeight(); int firstItemBottom = layoutManagergetDecoratedBottom(firstVisibleItem); return (itemCount - firstItemPosition - 1) itemHeight - recyclerviewHeight + firstItemBottom; }

已滑动的距离:

private int getScrolledDistance() { LinearLayoutManager layoutManager = (LinearLayoutManager) getLayoutManager(); View firstVisibleItem = thisgetChildAt(0); int firstItemPosition = layoutManagerfindFirstVisibleItemPosition(); int itemHeight = firstVisibleItemgetHeight(); int firstItemBottom = layoutManagergetDecoratedBottom(firstVisibleItem); return (firstItemPosition + 1) itemHeight - firstItemBottom; }

在小程序中没有DOM *** 作的方法,所以获取不到相应的DOM节点进行高度设置。

解决方案

1css方案

<view class="{{isFold 'flod':'extend' }}" bindtap="flodFn">

我是一个很长文字

</view>

flod{

//折叠样式

}

extend{

//展开样式

}

flodFn:function(){

thissetData({

isFold: !thisisFold

});

}

2动态渲染方案

<view bindtap="flodFn">

<view wx:if="{{isFold}}" >

我是一个很长的文字

</view>

<view wx:else>

我是一个很长的文字

</view>

</view>

flodFn:function(){

thissetData({

isFold: !thisisFold

});

}

在小程序中没有DOM *** 作的方法,所以获取不到相应的DOM节点进行高度设置。

解决方案

1css方案

<view class="{{isFold 'flod':'extend' }}" bindtap="flodFn">

我是一个很长的文字

</view>

flod{

//折叠样式

}

extend{

//展开样式

}

flodFn:function(){

thissetData({

isFold: !thisisFold

});

}

2动态渲染方案

<view bindtap="flodFn">

<view wx:if="{{isFold}}" >

我是一个很长的文字

</view>

<view wx:else>

我是一个很长的文字

</view>

</view>

flodFn:function(){

thissetData({

isFold: !thisisFold

});

}

高级

如果是列表,需要结合复杂数据处理,建议阅读

以上就是关于如何获取WebView中页面的Title信息全部的内容,包括:如何获取WebView中页面的Title信息、datagridview 如何取得当前行的某个列的值,用this.dataGridView1.CurrentRow.Cells[1].Value.ToString();、recyclerview怎么获取到里面的view等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9436805.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-28
下一篇 2023-04-28

发表评论

登录后才能评论

评论列表(0条)

保存