Skip to content
New issue

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

Open
zqqq opened this issue Jun 30, 2015 · 1 comment
Open

Comments

@zqqq
Copy link

zqqq commented Jun 30, 2015

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 中一个逻辑错误,你已经修复了。

希望做的更好。

@zhaozepeng
Copy link
Owner

谢谢哥们,让我又学到了一个新知识,不胜感激
已经将其改为if else,非常感谢

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants