A few months back , I'm create a project that's name is products in which i'm using spinner,imageswitcher,shopping cart and some other activities to create ecommerce site .Recently ,i.m create a new project that's name is scanner, in this i integrate a scanner using zxing libaray for scanning QR code.The problem is that i want to add all my product activities in this scanner project. When i copy all packages of product project and paste it into scanner project,the logcat show no error but console display that some features missing.I don't understand the problem,i checked all the activities. Is this possible to import one project into another project.How could i do this? Any help is highly appreciated.
相关问题
- How can I create this custom Bottom Navigation on
- Bottom Navigation View gets Shrink Down
- How to make that the snackbar action button be sho
- Listening to outgoing sms not working android
- How to create Circular view on android wear?
相关文章
- android开发 怎么把图片放入drawable的文件夹下
- android上如何获取/storage/emulated/下的文件列表
- androidStudio有个箭头不认识
- SQLite不能创建表
- Windows - Android SDK manager not listing any plat
- Animate Recycler View grid when number of columns
- Why is the app closing suddenly without showing an
- Android OverlayItem.setMarker(): Change the marker
You should set products project to be a library project : Right click on project in Eclipse -> properties -> Android -> check isLibrary.
In your scanner project do: Right click on project in Eclipse -> properties -> Android -> Add -> select products.
Now your can use anything that's defined in products from scanner project.