我在我的项目中添加了showcaseviewjar并像这样使用它
ShowcaseView.ConfigOptions co = new ShowcaseView.ConfigOptions();
co.hideOnClickOutside = true;
ViewTarget target = new ViewTarget(R.id.button_start_game, this);
ShowcaseView sv = ShowcaseView.insertShowcaseView(target, this, R.string.showcase_main_title, R.string.showcase_main_message, co);
sv.setOnShowcaseEventListener(this);
但我有例外
02-05 20:03:25.495: E/AndroidRuntime(25767): FATAL EXCEPTION: main
02-05 20:03:25.495: E/AndroidRuntime(25767): Process: com...., PID: 25767
02-05 20:03:25.495: E/AndroidRuntime(25767): java.lang.NoClassDefFoundError: com.github.espiandev.showcaseview.R$styleable
02-05 20:03:25.495: E/AndroidRuntime(25767): at com.espian.showcaseview.ShowcaseView.<init>(ShowcaseView.java:105)
02-05 20:03:25.495: E/AndroidRuntime(25767): at com.espian.showcaseview.ShowcaseView.<init>(ShowcaseView.java:97)
02-05 20:03:25.495: E/AndroidRuntime(25767): at com.espian.showcaseview.ShowcaseView.insertShowcaseViewInternal(ShowcaseView.java:825)
02-05 20:03:25.495: E/AndroidRuntime(25767): at com.espian.showcaseview.ShowcaseView.insertShowcaseView(ShowcaseView.java:854)
02-05 20:03:25.495: E/AndroidRuntime(25767): at com...MainActivity.onCreate(MainActivity.java:82)
82行有
ShowcaseView sv = ShowcaseView.insertShowcaseView(target, this, R.string.showcase_main_title, R.string.showcase_main_message, co);
有什么问题吗?
最佳答案
我是一个新手开发,我似乎总是陷入这样的事情…
解决方案是不使用jar,而是将showcaseview项目添加为库。
我通过以下步骤解决了同样的问题:
将“library”文件夹中的“main”项目从
https://github.com/amlcurran/ShowcaseView
右键单击步骤1中导入的项目,然后单击属性>android并选中“is library”框
![在此处输入图像描述][2]
右键单击要在中使用ShowCaseView的项目,然后单击属性>Android并单击“添加”
从步骤1中选择项目并单击“确定”(注意:我已将我的重命名为“Showcase”,如果您从上面的github链接获得项目,则您的项目应为“main”)。
单击应用
清洁和建造
享受更少的弯弯曲曲的红线!!!!
我会张贴屏幕截图,但这是我第一次这样张贴…
关于android - Showcaseview NoClassDefFoundError,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21585302/