搜索其他答案但未找到确切的答案。
我刚刚安装了Android Studio,并完全按照此处显示的说明进行操作:https://developer.android.com/sdk/installing/index.html?pkg=studio
当我转到下一页时:https://developer.android.com/sdk/installing/adding-packages.html它指出我应该“在Eclipse或Android Studio中,单击工具栏中的SDK Manager”。但Icon“SDK Manager”是灰色的。
我正在运行ubuntu 64位14.04
JDK运行良好。
任何帮助都将不胜感激。
答案 0 :(得分:3)
据我所知,当前版本的Android Studio已经发布,默认情况下不包含SDK。您可以在http://dl.google.com/android/android-sdk_r23.0.2-linux.tgz下载它,并安装在与AS安装不同的文件夹中,因为它现在非常重要 如果无法找到它,AS通常会要求您提供SDK位置的路径 希望这会有所帮助。
答案 1 :(得分:1)
我有同样的问题。
我的设置在代理后面。所以工作室init失败了。
所以我在android-studio / bin的idea.properties中添加了disable.android.first.run=true
这一行
它工作和工作室启动,但后来我看到SDK管理器显示为灰色。
当我删除disable.android.first.run=true
行并再次启动工作室时,我的问题已修复。
请记住,我必须在
中添加以下代理行studio64.vmoptions and studio.vmoptions
-Dhttps.proxyPort=port
-Dhttps.proxyHost=host
-Dhttps.proxyUser=username
-Dhttps.proxyPassword=password
希望这有帮助