Warning: file_get_contents(/data/phpspider/zhask/data//catemap/5/excel/24.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
我如何阻止Android Studio在双击时突出显示特定单词?_Android_Intellij Idea_Android Studio - Fatal编程技术网

我如何阻止Android Studio在双击时突出显示特定单词?

我如何阻止Android Studio在双击时突出显示特定单词?,android,intellij-idea,android-studio,Android,Intellij Idea,Android Studio,每当我双击其中包含多个单词的内容时,Android Studio就会突出显示它认为我正在单击的单词,而不是整个值 以View.findViewById为例。双击findViewById将突出显示find、View、By或Id,但我只希望它选择findViewById。我已经浏览了Android Studio的首选项,但没有看到任何类似于切换或选项的内容 更多示例: private String fooBar; 这将突出显示foo或Bar,具体取决于我单击的位置 myView.addView(.

每当我双击其中包含多个单词的内容时,Android Studio就会突出显示它认为我正在单击的单词,而不是整个值

View.findViewById
为例。双击
findViewById
将突出显示
find
View
By
Id
,但我只希望它选择
findViewById
。我已经浏览了Android Studio的首选项,但没有看到任何类似于切换或选项的内容

更多示例:

private String fooBar;
这将突出显示
foo
Bar
,具体取决于我单击的位置

myView.addView(...);
这将突出显示
my
/
视图
添加
/
视图
,但不突出显示
myView
添加视图