Tagged Questions
5
votes
8answers
714 views
Big picture questions regarding Django, Java, Python, HTML and web-site development in general
I am trying to get a handle on the state of the art regarding web site development and have several questions. Maybe I'll end up finding most of the answers on my own. I come from a background of C++ ...
5
votes
3answers
623 views
.Net vs Java for mobile development. What's your take?
I am developing mobile apps for some time in .NET and I was always wondering if the grass is greener on the other side (Java).
Thus, I would like to ask your opinion about which one you prefer for ...
2
votes
2answers
57 views
How to realize a persistent queue on Android
My application needs a data structure similar to a queue: put data in it, receive data from it, FIFO-like. With data I mean simple strings for now, later on perhaps more complex objects.
The thing is ...
2
votes
2answers
3k views
Android OnLongClickListener not firing on MapView
I just registered an OnLongClickListener on my my MapView on an Android app I'm currently writing. For some reason however the onLongClick event doesn't fire.
Here's what I've written so far:
public ...
1
vote
4answers
163 views
Which Top 10 Security Threats Apply to Android Apps? [closed]
I know this question may seem a bit malicious in nature, but I'm just trying to learn best practices in Android/mobile app development, and security is definitely a big issue in software. If you ...
1
vote
1answer
344 views
styling tabs in android like the google open source contacts
Im having troubles trying to style my tabs in android.
I want to make them look exactly the same as whats in the open source android contacts list (see ...
1
vote
1answer
832 views
How to read a bar code and encode it in android?
I am a beginner to Android application development.
How do I read a barcode and encode it android?
I Googled found the zxing an open source project. Is there any other method to do that task? And is ...
1
vote
2answers
45 views
Grabbing Info From Another App
I'm looking for information on how/if you can grab information from another app in Android. For example, if I wanted to make an app that checked which song was being played in the Music app at the ...
0
votes
1answer
54 views
OnBootReceiver works, but doesn't find AlarmReceiver
I'm trying to set up an alarm receiver right after booting. Therefore, i have an OnBootReceiver that should register the alarm. The onBootReceiver works and it gets called, but somehow it cannot find ...
0
votes
2answers
72 views
Android - Adding advertisment to my app [closed]
I am new to app development and am nearing the completion of my first app. However, I would like to implement some advertisement into my application and have a few question regarding it:
1 - What is ...
0
votes
1answer
61 views
Android Developing… newbie about app structure
I am implementing an Android App.
The user will choose a specific parameter called distance between:
1- kilometers;
2- miles.
So the app will save this response for future use of it.
How can I ...
0
votes
2answers
40 views
Which Java classes are usable when developing native Apps in Android?
it's said in the title. which Java Classes can I use when developing Android apps. Are there any exceptions, can I use the lot of the Java Library, like the whole of the standard Edition?
thank you ...
0
votes
3answers
68 views
What have I done wrong in the Android code?
I've followed a tutorial for a basic local login screen and despite following the tutorial exactly, I've hit some errors. I don't know exactly what they mean or how to solve them, could anybody help ...
0
votes
0answers
171 views
Future of Mobile development Coding - .net or Java? [closed]
I’m a front end developer with midlevel to advanced knowledge in popular programming tools like PHP, java, VB.net, C# and Action Script 3. Now I’m planning to invest some time seriously in mobile ...
0
votes
1answer
123 views
Problem with J2ME application
I have wrote a simple web service in .NET which return a string value.
[WebMethod]
public string DeveloperInfo()
{
return "Chamara is the appliaction developer";
}
I need to ...
0
votes
2answers
1k views
Converting from a text field to an numeric in Android
If I have an EditText component on my screen that I have specified inputType="decimal" for (i.e. a numeric/decimal field), what is the best way to convert it to an decimal value in the application ...