The chosen operation is not currently available

android错误之The chosen operation is not currently available

今天遇到一个很奇葩的一个问题  电脑突然卡了  然后没有办法只有被迫重新启动  按照以前的操作去打开eclipse 可以操作SDK ADT两个按钮 ,可是突然弹出“The chosen operation is not currently available”    意思说当前的选择不可以使用   当时就在想 为啥不可以使用呢?之前就用着蛮好的  不就是电脑卡了一下吗???后来查了各种资料  说JVM加载的时候路径被占用了
导致当前不可以操作  抱着尝试的态度 将eclipse重新关闭   然后打开SDK.exe文件  等了一会儿  可以加载出android各个版本信息  然后再重新打开eclipse再次点击SDK ADT两个按钮进行操作  发现一切OK !

时间: 2024-08-07 07:04:35

The chosen operation is not currently available的相关文章

eclipse default handler IHandler interface “the chosen operation is not enabled”

NOTE: These two methods: Tip: Subclass AbstractHandler rather than implementing IHandler. but you can use it to the below section you need to set: IHandler the chosen operation is not enabled NOT USE popupMenus instead of Menus isEnabled: should be s

eclipse plugin development -menu

org.eclipse.ui.menus locationURI MenuContribution locationURI = "[Scheme]:[id]?[argument-list]" 1.menu or toolbar 2. problem view popup:org.eclipse.ui.views.ProblemView?after= org.eclipse.ui.main.menu?after= org.eclipse.search.menu?dialogGroup o

TMS320F28335项目开发记录2_CCS与JTAG仿真器连接问题汇总

CCS与仿真器连接问题 实际使用过程中.仿真器和CCS连接可能出现这样或那样的问题,或许你的连接非常成功,没碰到过什么问题.但我的问题的确不少,可能与电脑配置有关吧,也可能与人品有关吧. 以下的自己的一些错误和解决方法总结.不一定对,但也算是一种解决方法.分享给大家: 问题: 1. jtag连接不上,报错: The controller has detected a dead JTAG clock. The user must turn-on or connect the JTAG clock

TMS320F28335项目开发记录2_CCS与仿真器连接问题

实际使用过程中,仿真器和CCS连接可能出现这样或那样的问题,也许你的连接很成功,没碰到过什么问题,但我的问题的确不少,可能与电脑配置有关吧,也可能与人品有关吧: 下面的自己的一些错误和解决方法总结,不一定对,但也算是一种解决方法,分享给大家: 问题: 1. jtag连接不上,报错: The controller has detected a dead JTAG clock. The user must turn-on or connect the JTAG clock for the targe

SVN使用技巧和参考文档总结

以下文章为网上收集: myEclipse 8.5下SVN环境的搭建(重点推荐) SVN建立版本库,配置用户和权限 Tortoise SVN使用方法,简易图解 版本控制软件SVN使用方法详解 学习笔记 :SVN使用方法详解(1) GoogleSVN MyEclipse安装SVN插件方式 SVN的标准目录结构:trunk.branches.tags SVN提交工作注意事项 SVN提交更新的一个准则 以下文章为原创: SVN is alreadyunder version control问题解决 SV

codeforces 414C C. Mashmokh and Reverse Operation(归并排序求逆序对)

题目链接: C. Mashmokh and Reverse Operation time limit per test 4 seconds memory limit per test 512 megabytes input standard input output standard output Mashmokh's boss, Bimokh, didn't like Mashmokh. So he fired him. Mashmokh decided to go to university

HDU 3397 Sequence operation(线段树)

HDU 3397 Sequence operation 题目链接 题意:给定一个01序列,有5种操作 0 a b [a.b]区间置为0 1 a b [a,b]区间置为1 2 a b [a,b]区间0变成1,1变成0 3 a b 查询[a,b]区间1的个数 4 a b 查询[a,b]区间连续1最长的长度 思路:线段树线段合并.须要两个延迟标记一个置为01,一个翻转,然后因为4操作,须要记录左边最长0.1.右边最长0.1,区间最长0.1,然后区间合并去搞就可以 代码: #include <cstdi

错误处理(Operation Result)方法

问题 现在有一个FileStorageService类,继承自IStorageService,具体实现如下 public interface IStorageService { void WriteAllBytes(string path, byte[] buffer); byte[] ReadAllBytes(string path); } public class FileStorageService : IStorageService { public void WriteAllBytes

【MongoDB】The basic operation of Mongodb, Insert\Query\Delete\Update

1, Insert MongoDB is database storing document object, the type of which is called Bson.(like JSON); Example:  // document defination Now after using command[db.posts.insert(doc)], you will insert record successfully if seeing the The following pictu