简单功能代码记录本(2)

来源:互联网 发布:python爬虫实例 编辑:程序博客网 时间:2024/05/24 07:21

记录一些小的功能知识点

一.关于Android资源文件中出现百分号的问题

在string.xml文件中

<string name="ID_CONVENTIONAL_RANGE">(常规范围为40%~50%)</string>

提示信息如下

Multiple annotations found at this line:  - error: Multiple substitutions specified in non-positional format; did you mean to add  the formatted="false" attribute?  - error: Unexpected end tag string  

解决办法:
1. 用两个百分号表示一个百分号即

<string name="ID_CONVENTIONAL_RANGE">(常规范围为40%%~50%%)</string>

2.或者用转义符\

<string name="ID_CONVENTIONAL_RANGE">(常规范围为40\%~50\%)</string>

二:关闭webview长按复制

mWebView.setOnLongClickListener(new View.OnLongClickListener() {            @Override            public boolean onLongClick(View view) {                return true;            }        });
0 0
原创粉丝点击