Searched for other answers but didn\'t find an exact answer.
I just installed Android Studio and followed exactly the directions that are displayed here: https://dev
I had the same issue.
My setup is behind a proxy. So the studio init was failing.
So i added disable.android.first.run=true this line in idea.properties in android-studio/bin
It worked and studio was launched, but then i saw that SDK Manager is grayed out.
My Problem was fixed when i removed the disable.android.first.run=true line and started the studio again.
Please also keep in mind that i had to add the below lines for proxy in
studio64.vmoptions and studio.vmoptions
-Dhttps.proxyPort=port
-Dhttps.proxyHost=host
-Dhttps.proxyUser=username
-Dhttps.proxyPassword=password
Hope this helps