Posts by EdCarlos • 51 points
6 posts
-
1
votes1
answer81
viewsA: Kotlin - R.string.navigation_drawer_open, Not being imported?
Are they declared in the strings.xml? Normally these strings are created automatically, apparently they are not, so just add them to the strings.xml: <string name="navigation_drawer_open">Open…
-
0
votes2
answers194
viewsA: Unable to rename resource files (layout) (Android Studio 3.0 Beta 3 is installed)
This kind of mistake I can usually solve by cleaning up the project. Go to Build > Clean Project menu. Wait to finish, then try renaming again.
-
0
votes1
answer90
viewsA: Progressidialog does not quit 0%
The Progress.setIndeterminate(true); makes it not measure progress. Changes to false that must resolve.
-
2
votes2
answers731
viewsA: Android Studio consuming 100% disk
I managed to solve the problem. From what I discovered the Android Studio was with little RAM, I think that so it used a lot the disk paging, I changed the settings to increase the memory in the…
android-studioanswered EdCarlos 51 -
0
votes2
answers731
viewsQ: Android Studio consuming 100% disk
My Android Studio is consuming 100% of the disk all the time, even when it has no task running on backgroud, this disk usage leaves the whole system very slow. Looking at the Task Manager is not…
android-studioasked EdCarlos 51 -
1
votes1
answer322
viewsQ: My layout has stopped working
I’m mounting a screen for an android application, I made the screen layout and was working, but after updating the android studio my layout no longer works. The code is this: <?xml version="1.0"…