Android Studio-자동 완성 및 기타 기능이 작동하지 않음
나는 안드로이드 스튜디오를 설치했다 .. 그것은 잘 작동하고 있었다. 이제 갑자기 자동 완성 기능이 작동하지 않습니다. 변수 확인이나 기능에 대한 도움이나 아무것도 확인하지 않고 아무 곳이나 입력 할 수 있습니다. 여전히 프로젝트를 컴파일 할 수 있고 그럴 때 오류가 발생합니다.
누구 든지이 문제로 나를 도울 수 있습니까?
파일> 캐시 무효화 / 다시 시작 ...> 무효화 및 다시 시작 클릭
이것은 정말로 나를 위해 작동합니다. 출처 : https://code.google.com/p/android/issues/detail?id=61844#c4
파일 메뉴의 절전 모드 가 비활성화 되어 있는지 확인할 수도 있습니다 .
Android Studio를 닫습니다. C : \ Users \ UserName.android로 이동하고 폴더 이름을 변경합니다.
- build-cache_old에 빌드 캐시
C : \ Users \ UserName.AndroidStudio3.2 \ system으로 이동하여 다음 폴더의 이름을 바꿉니다.
caches_old에 캐시
컴파일러에서 compiler_old로
compile-server에서 compile-server_old로
conversion_old로 전환
external_build_system에서 external_build_system_old로
프레임 워크에서 frameworks_old로
gradle_old로 gradle
resource_folder_cache에서 resource_folder_cache_old로
Android Studio를 열고 프로젝트를 다시 엽니 다.
개인적으로이 문제가 발생하지는 않았지만 다음 설정 ( File
-> Settings
또는 Alt+F7
)을 확인하십시오.
프로젝트 설정 [이름]
Inspections
- 보장 Android
및 Android Lint
확인, 또는 교대로 바로 상단에있는 드롭 다운 상자를 사용하여 기본값으로 다시 설정됩니다.
IDE 설정
Editor
-> Code Completion
- Autopopup code completion
가 선택되어 있는지 확인하고 기본 설정에 따라 나머지 설정을 확인합니다.
대부분의 경우 문제 Power Save Mode
가 활성화되어 있고 비활성화하려면 Current inspection profile
(에서 오른쪽 아래 모서리 Android Studio
)로 이동하십시오.
아무것도 작동하지 않으면 (나에게 일어난 일처럼) % userprofile %의 Windows에서 사용자 프로필로 이동하십시오. 사용중인 Android 스튜디오 버전으로 이름이 지정되고 점으로 접두사가 붙은 폴더 (숨김)를 찾을 수 있습니다.
.AndroidStudio3.1과 같습니다. 그냥 삭제하십시오.
해결 방법 : Android Studio (Beta) 0.8.14-Mac OS X 에서 "파일-> 절전 모드" 를 비활성화 하십시오.
창에서 옵션은 다른 위치에있을 수 있습니다.
같은 문제가 있었는데 새로운 안드로이드 스튜디오를 탐색하는 동안 "파일-> 절전 모드" 를 켜서 어떤 기능을하는지 확인했습니다.
I disabled the power save mode and all those intelligent features were back.
It turned out that in Power Save Mode, Android Studio switches off the modules responsible for features like Smart Code Completion and Code Analysis.
It's Working
Disable Power Save Mode
Untick Power Save Mode Option :: File -> Power Save Mode
I had a similar problem where none of the other solutions worked.
Closing Android Studio and then deleting the .idea and build folders resolved the issue.
There is a power saver mode in android studio if accidentally you click on that it will disable code analysis which will reduce the battery consumption and performance will also increase but it will not detect any errors and do auto complete operations.
To disable power saver mode
- Go to File Menu of Studio
- Uncheck The Power Saver Mode
In your IDE code analysis will be shown using an eye symbol at the right corner of your android studio.
If Green means it is enabled and there is no error in your code.
If Red Means It is enabled but there are few errors in your code.
If It is white or blur then code analysis is disabled
Just remove all the folders named AndroidStudioPreview
On Windows:
Go to your User Folder - on Windows 7/8 this would be:
[SYSDRIVE]:\Users[your username] (ex. C:\Users\JohnDoe)
In this folder there should be a folder called .AndroidStudioPreview
On Mac OS X
Remove these files:
~/Library/Application Support/AndroidStudioPreview ~/Library/Caches/AndroidStudioPreview ~/Library/Logs/AndroidStudioPreview ~/Library/Preferences/AndroidStudioPreview
Disable Power Save Mode and Invalidate Cache and Restart.
In my case, when I switch keyboard language to English, the auto complete works again.
i have this problem many times until now ,i suggest thees approach :
1-as said check power saveing mode
2-create new project with same application id and package name and copy all source and resource from older project to new one,
If you have a library project included, make sure the library has the dependencies in build.gradle
listed using the api
configuration, not the implementation
configuration. Also make sure that the project that includes the library has all the dependencies listed (using the implementation
configuration is fine here).
'The file size (2561270 bytes) exceeds configured limit (2560000 bytes). Code insight features are not available.'
Had this issue for days with none of these proposed solutions working before eventually getting this message in yellow under the tabs after adding a line of code. Removing the line of code eliminated the message but not the issue. There appears to be a code size window where you lose insight features but don't get this message, at least for me. Once you go over a certain point the message finally pops up. The suggested solution in a different thread for this issue was to edit 'Help/Edit Custom Properties' to increase the configured limit, but just opening this brought up a dialogue asking if I wanted to create an 'idea.properties' folder so I decided not to risk that approach over eventually cutting the file size.
Simpy It was working for me after restarting the Android studio.
I encounter with this problem while adding a kotlin library into my project on mac. Changing macbook language to english solved this problem. I also had some weird problems with auto-generated databinding codes, those are also solved.
There can be several things which cause this.
- Make sure you've write the correct version in
targetSdkVersion
andcompileSdkVersion
. - Make sure
targetSdkVersion
andcompileSdkVersion
are same.
Other solutions can be:
- Invalidate caches & restart Android Studio from
File
→Invalidate Caches / Restarts...
- Clean your project from
Build
→Clean Project
- Rebuild project from
Build
→Rebuild Project
- Make project from
Build
→Make Project
[this process may take some time]
나는 한동안 같은 문제가 있었다. Android Studio 사이트를 검색하고 소개에 부딪 힐 때까지. 그런 다음 자동 완성 기능을 활성화하는 방법을 찾았습니다. Ctrl + Space를 누르라고 말하고 내가했을 때 작동했습니다.
- Android Studio를 닫습니다.
- C : / User / [SystemName]으로 이동하여 .gradle 파일을 삭제합니다.
- Android Studio를 열고 gradle 파일을 다시 동기화하십시오.
'Programing' 카테고리의 다른 글
파이썬에서 문자열을 목록으로 변환하는 방법은 무엇입니까? (0) | 2020.08.26 |
---|---|
errno : 150을 제공하는 외래 키를 사용하여 MySQL 생성 테이블 (0) | 2020.08.26 |
현재 페이지 얻기 (0) | 2020.08.26 |
"3 * (4 + 2)"문자열을 평가하면 int 18 [duplicate]이 생성됩니다. (0) | 2020.08.26 |
"호스트를 확인할 수 없습니다. (0) | 2020.08.26 |