We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.只是问题,不算bug
PickBigImagesActivity.java PickOrTakeImageActivity.java 这两个文件中有两处使用了 switch / case 这样会导致当项目作为 android studio 的 lib导入时,会提示错误
网上的解释:
在一般的Android项目中,R类的常量都是用final定义的,但ADT 14之后,如果在library 项目中,它会没有final关键字, 估计在新ADT中,资源文件会变成一个library..., 在switch语句的case中,如果使用 R.id.xxx 则会提示有问题,不允许非常量在case语句中。 Google提供的一个方法就是把它转化为if-else语句,即在switch语句处 Ctrl+1 然后可以替换成if-else.语句。
2.就是 PickBigImagesActivity.java 中一个逻辑错误,你已经修复了。
希望做的更好。
The text was updated successfully, but these errors were encountered:
谢谢哥们,让我又学到了一个新知识,不胜感激 已经将其改为if else,非常感谢
Sorry, something went wrong.
No branches or pull requests
1.只是问题,不算bug
PickBigImagesActivity.java
PickOrTakeImageActivity.java
这两个文件中有两处使用了 switch / case
这样会导致当项目作为 android studio 的 lib导入时,会提示错误
网上的解释:
在一般的Android项目中,R类的常量都是用final定义的,但ADT 14之后,如果在library 项目中,它会没有final关键字,
估计在新ADT中,资源文件会变成一个library...,
在switch语句的case中,如果使用 R.id.xxx 则会提示有问题,不允许非常量在case语句中。
Google提供的一个方法就是把它转化为if-else语句,即在switch语句处 Ctrl+1 然后可以替换成if-else.语句。
2.就是 PickBigImagesActivity.java 中一个逻辑错误,你已经修复了。
希望做的更好。
The text was updated successfully, but these errors were encountered: