How to change or add theme to Android Studio?

File->Settings->Editor->Colors & Fonts-> In scheme name select Darcula and apply to see a awesome dark background theme editor Android Studio 3.1.2 File->Settings->Editor->Color Scheme-> In scheme name select Darcula and apply to see a awesome dark background theme editor

Where to place the ‘assets’ folder in Android Studio?

Since Android Studio uses the new Gradle-based build system, you should be putting assets/ inside of the source sets (e.g., src/main/assets/). In a typical Android Studio project, you will have an app/ module, with a main/ sourceset (app/src/main/ off of the project root), and so your primary assets would go in app/src/main/assets/. However: If you need assets specific to a build type, such as debug versus release, you can create … Read more

E/AndroidRuntime﹕ FATAL EXCEPTION: main

You’re calling findViewById() too early when initializing an activity settings object, likely a member variable. The code you posted doesn’t show that. You can call activity functions really only in onCreate() or later. Also put the findViewById() after setContentView() so it can actually return something other than null.

Android Studio is slow (how to speed up)?

I recently upgraded from Eclipse to Android Studio and I’m not really liking the experience. I’m comparing them both on a Windows 7 64 bit ultimate with 16GB of ram and Intel i7 4770 running NVidia Geforce 780 with the latest NVidia drivers if it matters and I’m running the latest JDK and the latest … Read more

tech