应用中使用RecyclerView列表来展现动态简介,这时候需要添加长按复制的功能来提升用户的体验。使用Android自带的功能就能满足该需求,无需自己实现,方式很简单,一句话解决:
<pre>
TextView.setTextIsSelectable(true);
</pre>但是其他地方使用该代码能正常使用,然而在这里却出现无法复制的问题。仔细体验几次发现:长按时出现了震动的情况,可并没有出现选择条,说明该代码确实添加到了控件上,没有出现复制条一定是哪个地方拦截或者阻止了。打印日志发现系统报了异常:
<pre>
TextView does not support text selection. Action mode cancelled.
</pre>就拿着该异常去网上找解决办法,发现不只是我本人遇到了该问题,好多人提问。但是网上的回答却是千奇百怪、各种出招、各种不靠谱。但是有一个人的答案(hungkk)被遗漏在无人关注的角落。本着试一试的心态进行测试,发现真的可行,就拿过来分享。
其实方式很简单,应该是Android的一个bug,就是在TextView外部嵌套一个布局,让TextView不要使用android:layout_width=”match_parent”,而是改成使用android:layout_width="wrap_content"
即可。更改后发现完美解决。代码如下:
修复之前相关代码:
<pre>
<TextView
android:id="@+id/tv_helinfo_comment_introduction"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/iv_helinfo_comment_avatar"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/sayhi_content_bg"
android:textColor="#999999"/>
</pre>修复后相关代码:
<pre>
<LinearLayout
android:id="@+id/ll_helinfo_comment_introduction"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/iv_helinfo_comment_avatar"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@drawable/sayhi_content_bg">
<TextView
android:id="@+id/tv_helinfo_comment_introduction"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="10dp"
android:paddingBottom="10dp"
android:textColor="#131313"/>
</LinearLayout>
</pre>添加复制功能的代码:
<pre>
holder.tvIntroduction = (TextView) view.findViewById(R.id.tv_helinfo_comment_introduction);
holder.tvIntroduction.setTextIsSelectable(true);
</pre>总结一下本次经历:
1,Android是一个逐渐完善和趋向完美的生态系统。但不能说现在的Android已经完美了,它会有缺陷,漏洞和不足,这需要我们包容和修复。
2,善于使用网络。对于开发工作来说,常说的一句话就是避免开发相同的轮子。开源社区和各种论坛是一个很强大、很有效的工具,每一个合格的开发人员和软件工程师都应该学会使用这个工具来完善自己,继而提升自己。
3,善于分享。作为开发工作一线人员,我们每个人都有责任维护平台的良性循环和逐渐完善。每位开发者都应该尽量将自己在平台的收获分享出来。开放平台对每一种需求都可能有很多种实现方式,但是不可否认,最好的往往只有一种!只有将最好的实现方式广为人知,我们在生活中使用的应用才可能都是优秀应用,我们的平台才可能是一个优秀的平台。
Android TextView长按复制功能失效解决办法
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
- 内容抽屉菜单ListViewWebViewSwitchButton按钮点赞按钮进度条TabLayout图标下拉刷新...