Android :: Business Card Sample / Targets 1.5 And 1.6 Vs 2.0
Nov 16, 2010
I would like to know what I have to do in order to have the Business Card Sample in SDK 3 (android 1.5), because it uses some stuff that does not compile in android 1.5, example: - if (sdkVersion < Build.VERSION_CODES.ECLAIR)... -import android.provider.ContactsContract.Contacts; -import android.provider.ContactsContract.CommonDataKinds.Phone; What is the best way to have the application compiling in eclipse and be able to run in android 2.0 and 1.5?
View 2 Replies
Oct 13, 2010
I've just become the proud owner of a lovely Sony Ericsson x10 mini! Love the phone but today my mate text me wanting a contact sent to him. No problem I thought, i'll send a business card. No I won't because I can't! No worries I thought i'll search google for an app, heard of an app called ciacs contact sender. Can't find it on the android market so any ideas where I go now?
View 1 Replies
View Related
Jun 15, 2010
I am looking for a business card scanner app.I know there are a ton on the market but i can not find one that gives me the option to add the cards to a database.I would like to be able to have the cards added to the database and then be able to open the database and search by company or name ect.If there was an option to add to contacts that would be ok as well.Point is i have probably 1000 business cards and do not want them in my contacts even if i make a trash group it is just not worth the effort.
View 1 Replies
View Related
May 12, 2010
I am new to this forum so just dropping been looking really hard for a nice business card apps and i think today I found one. The problem, it is only available in iphone. Anyone know equivalent of it in android ?
check it out. that's what I really want
ScanBizCards: scanning business cards right on your iPhone.
View 4 Replies
View Related
Mar 5, 2010
Got a text of my girlfriend earlier, asking me to send her the phone number for my local taxi rank, and I couldn't find how to send a business card for the life off me! I just ended up memorizing the number.Did I just over look it in the settings, out is it not an option on android 2.1?I hope it is an option, cos it's a pain in the arse if not.
View 5 Replies
View Related
Nov 15, 2010
Picked up new DesireHD yesterday and someone tried to send me an MMS business card tonight and I got the 'unsupported media type' error.Unbranded 2.2 on the Orange network.Tried searching to no avail.
View 5 Replies
View Related
Jan 6, 2010
Does anyone know a good App that will scan a business card but also keep the image.I use google goggles and works great but I want something that will keep the image of the card,just like on a PC.
View 4 Replies
View Related
Sep 15, 2010
Would like to ask anybody out there who can show me the ropes on how to forward a contact/business card.having a hard time doing this.
View 8 Replies
View Related
May 30, 2012
know of a business card reader that will import directly into Moxier Contacts? I've tried out a few and while most will read into the phone contacts list just fine, I want it to dump into Moxier and everyone I've tried so far won't do that.
View 2 Replies
View Related
Jul 26, 2010
Hi has anyone got an idea how you can send a business card from the x10 mini please?
View 1 Replies
View Related
Sep 23, 2010
Is there anyway to send a business card other than by bluetooth? This phone is the most unfriendly user phone that I have ever owned.Suggestion to SE,before bringing new software update,please make it more user friendly.
View 1 Replies
View Related
Nov 6, 2010
How can I send a contact info from my phonebook to someone? (like sending business card)I do not find any option of send contact information.
View 3 Replies
View Related
Sep 7, 2010
I am not able to send or receive business card through my xperia mini pro
View 1 Replies
View Related
Jul 14, 2010
How to send business card by text message
View 1 Replies
View Related
Aug 31, 2010
How do I send a business card / a contact to my friend
View 2 Replies
View Related
Oct 14, 2010
How do I easily send a contacts details to another contact in my contacts list?
View 4 Replies
View Related
Sep 3, 2010
Is it possible to send a business card via email or text message on the X10. At the moment I'm only able to send it via bluetooth, which is annoying cause the person who I need to send it to is 40 miles away.
View 3 Replies
View Related
Apr 3, 2010
I created a new project based on the Wikitionary sample.After tinkering with it so much and screwing it up, I decided to delete the project and start over again.After deleting my project, I find that the Wiktionary sample is no longer available as a starting point.
View 1 Replies
View Related
Nov 3, 2009
I have implemented a SearchManager which make uses of a searchable.xml with all the settings and put it in the xml/ directory.
I tried to create a new directory called xml_v4/ to add some attributes (the android:includeInGlobalSearch ie) which isn't supported in sdk3/1.5 but the xml directory seems not to be supported by the dir_suffixes.
How do I deal with this?
View 4 Replies
View Related
Aug 11, 2010
i'm currently trying to specifically target ARMv7 custom hardware and I'm facing issues when trying to install the APK. When I try doing "adb install app.apk" Logcat informs me that: W/PackageManager( 1062): Native ABI mismatch from package file And does not install the APK. With searching I was able to trace down that the problem might have something to do with the architectures not matching on the APK and the platform. Is this it? How does the PackageManager find out the architecture from the APK file? I'm guessing it's not trying to execute the binary or anything, it just checks the files meta data? If so, is there a place in the APK where this information is located? Or am I completely hitting blank here and I should look somewhere else?
View 3 Replies
View Related
May 30, 2010
My application retrieve icons of installed apps on the phone. But for the dialer, the icon is different when I target a minSdkVersion = 3 or minSdkVersion = 4. I did not found different icon for an other application.
I am testing on a motorola milestone. and I use ActivityInfo.loadIcon() to load icons.
Can someone explain this behavior ?
View 2 Replies
View Related
Nov 5, 2009
This is for an Android application but I'm broadening the question to Java as I don't know how this is usually implemented. Assuming you have a project that targets a specific SDK version. A new release of the SDK is backward incompatible and requires changing three lines in one class. How is this managed in Java without duplicating any code(or by duplicating the least amount)?
I don't want to create two projects for only 3 lines that are different. What I'm trying to achieve in the end is a single executable that'll work for both versions. In C/C++, you'd have a #define based on the version. How do I achieve the same thing in Java?
View 5 Replies
View Related
Aug 5, 2010
I"m planning to store my data in a binary format as a resource, read it into an int buffer and basically pass it straight down to a native C++ function, which might cast it to a struct/class and work with it. No pointers, obviously, just ints and floats. The question is - what kind of fixing up do I need to do? I suppose that I need to check ByteOrder.nativeOrder(), figure out if it's big Indian or little Indian, and perform byte-swapping if need be. Other than that, floats are presumably guaranteed to be expected in IEEE 754 format? Are there any other caveats I'm completely overlooking here? (Also - since I'm compiling using the NDK, I know what architecture it is already (ARMv7-A, in my case), so can I technically skip the Indian shenanigans and just take the data the way it is?)
View 1 Replies
View Related
Nov 7, 2010
I haven't posted here in a while and I thought I'd share some stuff on the new update.
If you aren't familiar with Agent, here are some screenshots:
Episode 1
Episode 2
New Bonus Level in Episode 2
Episode 3
Halloween Episode
QR Code for the Full Game
QR Code for the Demo Game
YouTube Video: http://www.youtube.com/watch?v=I42G2Tc2qOI
View 12 Replies
View Related
Feb 8, 2013
"No compatible targets were found. Do you wish to a add new Android Virtual Device?"
I'm using windows 7 and a sony Xperia J.I rebooted both already, and re-installed the drivers (assuming I installed the correct drivers, but I'm pretty sure I did)
View 3 Replies
View Related
May 28, 2010
Considering (heavily!) the Evo but the boss just asked me how well it handles things like pdf's and .doc's and such. We're coming over from blackberries and I'm having trouble finding anything definitive about whether the Evo (or android in general) can handle those things natively. I see that there are apps that do it but come with mixed reviews. Just wondering what your experiences and/or expectations are.
View 23 Replies
View Related
Aug 12, 2010
Would be interesting to know what applications you use at work. In Sweden, we can not get pay apps yet so it must be "free"
View 6 Replies
View Related
Oct 21, 2010
Getting ready to take a job that will involve air travel, hotels, rental cars et al. Any tips for the best travel app out there? Check Flight Status. Maybe be able to reserve from the device etc.?
View 4 Replies
View Related
Oct 7, 2010
New to android..been using WM 6.1 sync with outlook obviously seemless. Need the same type of functionality but it doesn't have to be with outlook. Looking for options to use for business. Being a small company I can go anyway I want, don't have any restrictions other than need to sync all with phone, laptop and desktop. Beginning to travel more so contact, calendar and task must sync (notes and a Today front end would be nice). I have tried Dejaoffice but I end up with 2 sets of contacts and calendars (Samsung and Dejaoffice) not to mention that the UI is lame (had just as good 15 years ago with Instant Recall). Don't mind rooting the phone if needed. So what options exist in the open source world? Love my captivate phone but need to be able to do business to keep it. Anxious to hear how the rest of the Android world does it.
View 10 Replies
View Related
Oct 29, 2009
My company is going to be switching to Gmail for work. I will thus have a work and personal Gmail account. On Android, will I be able to run two instances of the Gmail app, one for work and one for personal?
I don't want to run one through the standard mail program because I don't want to lose the gmail features like Conversations.
View 2 Replies
View Related