之前安装的android studio之后,SDK Manager和AVD Manager两个运行程序双击都打不开页面了,之前都是正常的,所以java环境变量的问题是不存在的。

SDK Manager本质上是执行tools目录下面的android命令,执行 tools/android 命令发现提示 The "android" command is deprecated.,百度了一下,果然发现Google将原来的SDK Mananger弃用了,官方建议的开启方式是,在Android Studio中打开tools>>SDK manager,见下图:

安装android studio之后无法直接打开SDK manager_第1张图片

不过这样使用比较麻烦,所以查了资料,发现只要修改android sdk文件夹下的tools里面的android.bat文件内容就可以恢复成之前的形式。

首先备份下现有android.bat文件

然后替换成如下的内容:

  1. @echo off
  2. rem Copyright (C) 2007 The Android Open Source Project
  3. rem
  4. rem Licensed under the Apache License, Version 2.0 (the "License");
  5. rem you may not use this file except in compliance with the License.
  6. rem You may obtain a copy of the License at
  7. rem
  8. rem      http://www.apache.org/licenses/LICENSE-2.0
  9. rem
  10. rem Unless required by applicable law or agreed to in writing, software
  11. rem distributed under the License is distributed on an "AS IS" BASIS,
  12. rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. rem See the License for the specific language governing permissions and
  14. rem limitations under the License.
  15.  
  16. rem Useful links:
  17. rem Command-line reference:
  18. rem   http://technet.microsoft.com/en-us/library/bb490890.aspx
  19.  
  20. rem don't modify the caller's environment
  21. setlocal enableextensions
  22.  
  23. rem Set up prog to be the path of this script, including following symlinks,
  24. rem and set up progdir to be the fully-qualified pathname of its directory.
  25. set prog=%~f0
  26.  
  27. rem Grab current directory before we change it
  28. set work_dir=%cd%
  29.  
  30. rem Change current directory and drive to where the script is, to avoid
  31. rem issues with directories containing whitespaces.
  32. cd /d %~dp0
  33.  
  34.  
  35. rem Check we have a valid Java.exe in the path.
  36. set java_exe=
  37. call lib\find_java.bat
  38. if not defined java_exe goto :EOF
  39.  
  40. set jar_path=lib\sdkmanager.jar;lib\swtmenubar.jar
  41.  
  42. rem Set SWT.Jar path based on current architecture (x86 or x86_64)
  43. for /f "delims=" %%a in ('"%java_exe%" -jar lib\archquery-26.0.0-dev.jar') do set swt_path=lib\%%a
  44.  
  45. :MkTempCopy
  46.     rem Copy android.bat and its required libs to a temp dir.
  47.     rem This avoids locking the tool dir in case the user is trying to update it.
  48.  
  49.     set tmp_dir=%TEMP%\temp-android-tool
  50.     xcopy "%swt_path%" "%tmp_dir%\%swt_path%" /I /E /C /G /R /Y /Q > nul
  51.     copy /B /D /Y lib\common.jar         "%tmp_dir%\lib\"          > nul
  52.     copy /B /D /Y lib\commons-codec*     "%tmp_dir%\lib\"          > nul
  53.     copy /B /D /Y lib\commons-compress*  "%tmp_dir%\lib\"          > nul
  54.     copy /B /D /Y lib\commons-logging*   "%tmp_dir%\lib\"          > nul
  55.     copy /B /D /Y lib\dvlib.jar          "%tmp_dir%\lib\"          > nul
  56.     copy /B /D /Y lib\gson*              "%tmp_dir%\lib\"          > nul
  57.     copy /B /D /Y lib\guava*             "%tmp_dir%\lib\"          > nul
  58.     copy /B /D /Y lib\httpclient*        "%tmp_dir%\lib\"          > nul
  59.     copy /B /D /Y lib\httpcore*          "%tmp_dir%\lib\"          > nul
  60.     copy /B /D /Y lib\httpmime*          "%tmp_dir%\lib\"          > nul
  61.     copy /B /D /Y lib\layoutlib-api.jar  "%tmp_dir%\lib\"          > nul
  62.     copy /B /D /Y lib\org-eclipse-*      "%tmp_dir%\lib\"          > nul
  63.     copy /B /D /Y lib\sdk*               "%tmp_dir%\lib\"          > nul
  64.     copy /B /D /Y lib\swtmenubar.jar     "%tmp_dir%\lib\"          > nul
  65.  
  66.     rem jar_path and swt_path are relative to PWD so we don't need to adjust them, just change dirs.
  67.     set tools_dir=%cd%
  68.     cd /d "%tmp_dir%"
  69.  
  70. :EndTempCopy
  71.  
  72. rem The global ANDROID_SWT always override the SWT.Jar path
  73. if defined ANDROID_SWT set swt_path=%ANDROID_SWT%
  74.  
  75. if exist "%swt_path%" goto SetPath
  76.     echo ERROR: SWT folder '%swt_path%' does not exist.
  77.     echo Please set ANDROID_SWT to point to the folder containing swt.jar for your platform.
  78.     goto :EOF
  79.  
  80. :SetPath
  81. rem Finally exec the java program and end here.
  82. REM set REMOTE_DEBUG=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000
  83. call "%java_exe% %REMOTE_DEBUG%" "-Dcom.android.sdkmanager.toolsdir=%tools_dir%" "-Dcom.android.sdkmanager.workdir=%work_dir%" -classpath "%jar_path%;%swt_path%\swt.jar" com.android.sdkmanager.Main %*
  84.  
  85. rem EOF

保存之后,双击android sdk文件下的sdk manager就可以打开页面了:

安装android studio之后无法直接打开SDK manager_第2张图片

 

更多相关文章

  1. android使用WebView显示sdcard的html文件
  2. Android模拟器adb命令介绍
  3. 003.android资源文件剖析(Resources)
  4. android命令行启动
  5. Android之Manifest文件
  6. 自定义SeekBarPreference控件(老外出品,直接在preferences文件中
  7. Android资源文件 - 使用资源存储字符串 颜色 尺寸 整型 布尔值
  8. Android如何使用so文件和Android studio中导入so
  9. 最近的工作记录:键盘敲入的Linux Shell命令,哈哈

随机推荐

  1. 【Android學習專題】網絡通信篇:Socket TC
  2. 当GridView中的一项被点中的时候显示的背
  3. Android中属性gravity和layout_grativy的
  4. android中的数据库操作(SQLite)
  5. 【Android】Android控件之Seekbar拖动条
  6. Android中的五大布局
  7. android之layout布局和ListView中的一些
  8. android中设置分隔线几种方法
  9. RelativeLayout的各种属性整理
  10. Android(安卓)Handler机制7之消息发送