5,031 Posted Topics

Member Avatar for James_30

Ohhh dear god, my past is biting me back... I did wrote this tutorial 6 years ago, hopping to show people how to do scriplet-less Java web development. At the time I had no idea about build tools like Ant, Maven or Gradle and it was common to have lib …

Member Avatar for jwenting
0
140
Member Avatar for James_30

build.xml is used by Ant to provide specific instruction how to build your project https://ant.apache.org/manual/tutorial-HelloWorldWithAnt.html Similary Maven uses pom.xml [tutorial](http://maven.apache.org/guides/getting-started/maven-in-five-minutes.html) and Gradle uses build.gradle [tutorial](http://www.gradle.org/docs/current/userguide/tutorial_java_projects.html)

Member Avatar for peter_budo
0
192
Member Avatar for James_30

@JamesCherrill not all using Java 8 yet :P @James_30 given that you mention build.xml I believe you have Ant build and your IDEs (NetBeans, Eclipse) do know where to find joda jar in libs folder. However if you compiling from command line you need to include also path to any …

Member Avatar for peter_budo
0
779
Member Avatar for avinash_3

Not working is rather bad description. If you post any error/crashes you gettng perhaps someone may help you...

Member Avatar for peter_budo
0
201
Member Avatar for nachita

Since you did not specified exact problem I can only point you to Facebook oficial documentation https://developers.facebook.com/docs/android/share

Member Avatar for peter_budo
0
56
Member Avatar for divyakrishnan

You can try Little Eye Labs performance [tool](http://www.littleeye.co/). However as far I know it is commercial product, not sure how much you will get out of it as few months back was bought by Facebook for they internal usage

Member Avatar for Kelly Burby
0
265
Member Avatar for sairam1592

google play services are at the bottom after all api levels as you can see here https://cdn.tutsplus.com/mobile/uploads/2014/02/android-play-services-sdk-manager.png

Member Avatar for peter_budo
0
467
Member Avatar for 9tontruck

* Build http://developer.android.com/reference/android/os/Build.html * MemoryInfo http://developer.android.com/reference/android/app/ActivityManager.MemoryInfo.html * DisplayMetrics http://developer.android.com/reference/android/util/DisplayMetrics.html

Member Avatar for 9tontruck
0
178
Member Avatar for Taimur_1

@Taimur_1 Hey I want to be rich, do it for me! This is sort of attitude and post we do not like to see around...

Member Avatar for Kelly Burby
0
122
Member Avatar for wplay

>So, yes if you develop an app and run whatever ad-service, I think you would be able to get similar or more gains, if not less, from the visits. You forgetting app popularity and daily usage. If there are only few downloads and very few active users you not gone …

Member Avatar for Kelly Burby
0
225
Member Avatar for Transcendent

You need to know Java, if you don't then go and learn it then come back. If you know Java, then perhaps reading one of these books will be suficient enough * [Professional Android 4 Application Development](http://www.wrox.com/WileyCDA/WroxTitle/Professional-Android-4-Application-Development.productCd-1118102274.html) considered industry standards given that Reto is Google employee * [Pro Android 4](http://www.apress.com/9781430239307) …

Member Avatar for harry_6
0
351
Member Avatar for mikewyatt

Having embedded database inside your project doesn't guarantie that it will work everywhere. Do you have any checks run on your database to determinate that all tables been created/do exist before your let user to do anything?

Member Avatar for juliuas
0
288
Member Avatar for hwoarang69
Member Avatar for peter_budo
0
1K
Member Avatar for alvinreserva

> Use BLE (Bluetooth Low Energy) and iBeacon. Take full advantage of those. And how do you propose to transmit updates on cabs locations in oreder to work out journey duration or displaying cab locations on map? iBeacons are good for transmiting pre-programmed information not for creating network that shares …

Member Avatar for peter_budo
0
222
Member Avatar for castajiz_2

Time is Android represented either by Date or Time objects. Each of these will return result in miliseconds as long variable (http://developer.android.com/reference/java/util/Date.html#getTime() http://developer.android.com/reference/android/text/format/Time.html#toMillis(boolean) ). Then you just need to compare time1 to time2 to find if it is lesser/equal/greater

Member Avatar for castajiz_2
0
853
Member Avatar for missy_mi

Sorry for being sarcastic but under which rock you been living? Both iPhone and Android do not support Flash for last 2 years and Adobe is not doing any development on Flash anymore. You can either use HTML5 or JavaScript

Member Avatar for missy_mi
0
135
Member Avatar for ronaldpaul
Member Avatar for ianian944

Your SQL query is wrong "SELECT title, price, image1 FROM advert WHERE title, make, `model LIKE '%%' "";` * You are having `\`` in front of model * I have not sure what `'%%'`is supposed to represent * Also at the end you have two double quotes To asure that …

Member Avatar for peter_budo
0
2K
Member Avatar for peter_budo

Please don't post "spam" or "Thank you" posts in this thread since this is meant to be used as a guide for all beginners and I am sure we would like it to be on topic. I hope you understand this. For these of you who would like to learn …

Member Avatar for Rajeev Kumar_1
9
3K
Member Avatar for SimonIoa

Few options: 1. Application will always request data from server so no real data storing on device (if requests are heavy it will be slow and expensive on data) 2. On device data copy, application stores only essential data. So first it will check if data available on device. If …

Member Avatar for peter_budo
0
140
Member Avatar for ParPau

As Jwenting said there are free options such as [iText](http://itextpdf.com/), [Apache PDFBox](http://pdfbox.apache.org/) and others just search for them Both of above mentioned libraries have very good documentation with plenty of examples and active communities to help out with issues one may face

Member Avatar for Taywin
0
2K
Member Avatar for dlmagers_1

Usually stuff like this is done directly on bank contract as they do not provide public APIs for such stuff to avoid DDOS or other attacks on their services. Your only option will be web scraping where you need to work out URLs that bank is using. Then build request …

Member Avatar for jwenting
0
189
Member Avatar for Varunkrishna

Spring develeopers produceded documentation with official tutorials http://docs.spring.io/spring/docs/current/spring-framework-reference/html/index.html

Member Avatar for peter_budo
0
83
Member Avatar for Nesre

Sounds like you are missing stuff that is available only with Java EE. Did you installed any [Java EE](http://www.oracle.com/technetwork/java/javaee/downloads/index.html)?

Member Avatar for Nesre
0
184
Member Avatar for SimonIoa
Member Avatar for peter_budo
0
91
Member Avatar for ianian944

You have to check your Java server where kyou deploying that code for logs. It is not job of IDE to give you crash reports of server based Java application. Secondly why the hell to use ugly scriptlets inside JSP instead of servlet????

Member Avatar for jwenting
0
303
Member Avatar for london-G

Most likely you are missing JDBC driver, or you have duplicate (at least that was problem with Tomcat if you had JDBC driver in Tomcat lib folder and another in your project lib folder). Without seing your project hard to advice otherwise...

Member Avatar for peter_budo
0
132
Member Avatar for liltrig3

[QUOTE=liltrig3;446116]I Have Been Trying To Code This For Like Week Now And I Am Just Left With Five Days To Submit It. [/QUOTE] If you been working so hard you should show us the code what you did so far, explain what is your problems whit it and what you …

Member Avatar for stultuske
0
4K
Member Avatar for nancy10001
Member Avatar for ~s.o.s~
-1
385
Member Avatar for backalley

This is how simple it can be done Button one = (Button)this.findViewById(R.id.button1); final MediaPlayer mp = MediaPlayer.create(this, R.raw.soho); one.setOnClickListener(new OnClickListener(){ public void onClick(View v) { mp.start(); } });

Member Avatar for backalley
0
291
Member Avatar for new_programmer

Android SDK with emulator available from [URL="http://developer.android.com/sdk/index.html"]android developer[/URL] site. Books, multiple titles: [list] [*][URL="http://www.amazon.co.uk/Professional-Android-Application-Development-Programmer/dp/0470565527/ref=sr_1_1?s=books&ie=UTF8&qid=1281008265&sr=1-1"]Professional Android 2 Application Development[/URL] [*][URL="http://books.google.com/books?id=2XeNswkT_2YC&lpg=PP1&dq=Beginning%20Android%202&pg=PP1#v=onepage&q&f=false"]Beginning Android 2 [/URL] [*][URL="http://books.google.com/books?id=Bam8K5SIiTkC&lpg=PA132&dq=Beginning%20Android%202&pg=PP1#v=onepage&q=Beginning%20Android%202&f=false"]Pro Android 2[/URL] [*][URL="http://books.google.com/books?id=-1eQ71mLj2cC&lpg=PP1&dq=Pro%20Android%20Games&pg=PP1#v=onepage&q&f=false"]Pro Android Games (Books for Professionals by Professionals) [/URL] [/list] Sites [list] [*][url]http://android-developers.blogspot.com/[/url] - plenty of tutorials besides some various articles [*][url]http://blogs.sonyericsson.com/developerworld/category/tutorials/[/url] [*][url]http://hackaday.com/2010/07/15/android-dev-101-%E2%80%93-part-1hello-world/[/url] [/list]

Member Avatar for peter_budo
0
672
Member Avatar for RAJboss

@iConqueror was there any reason to digg out this thread when all what you did is post just silly remark....

Member Avatar for peter_budo
0
301
Member Avatar for sunil.sahu.14203

> i have some problem plz soloved We are not telepats to know what problem you have if you do not provide neither error or actula code

Member Avatar for jwenting
0
80
Member Avatar for monkeybut

If i read it correctly your insertValue `R.id.txtInsert` is part of `R.layout.add_item`. If that is case then final EditText insertValue = (EditText)findViewById(R.id.txtInsert); will be null because edit text was not found. You have to find it in coresponding view, so it should be like final EditText insertValue = (EditText) addView.findViewById(R.id.txtInsert);

Member Avatar for monkeybut
0
1K
Member Avatar for idabasha
Member Avatar for shrutisoni
Member Avatar for peter_budo
0
72
Member Avatar for Stefce

@Hiroshe you should spend more then minute because you would find there are multiple options that are explained here http://developer.android.com/guide/topics/data/data-storage.html @Stefan the simplest and easiest is [SharedPreference](http://developer.android.com/guide/topics/data/data-storage.html#pref)

Member Avatar for Stefce
0
213
Member Avatar for henryz_box
Member Avatar for Pyler

>I recently moved both my eclipse and Android folder into the same location Rather generic statement. What exactly did you do? PS: Android Studio for the win. No silly ADT just point IDE where is Android SDK and setup your project where you want, not dependent on some stupid Workspace

Member Avatar for peter_budo
0
322
Member Avatar for sribharath_1

What ever library you use it will have something similar to default Android implementation of `HttpResponse.getStatusLine()`[link](http://developer.android.com/reference/org/apache/http/HttpResponse.html#getStatusLine()) from which you get `StatusLine` and here you can get actual code value. This is often in libraries simplyfied to something like `HttpResponse.getStatusCode` or similar So all you have to do is fire your …

Member Avatar for peter_budo
0
157
Member Avatar for Pyler
Member Avatar for peter_budo
0
163
Member Avatar for shubhalaxmi
Member Avatar for Komal_2
-1
1K
Member Avatar for imchivaa

Can you explain why you are trying to manipulate the same button which you just did click? From what you are doing it is look like you are just changing selection state that should be managed from button xml you can read about it here http://developer.android.com/guide/topics/resources/drawable-resource.html#StateList

Member Avatar for imchivaa
1
1K
Member Avatar for shadowsrose1

To make a comment you have to do /* Some comment here */ and not to do */ Some comment here */ Also most of the errors are rather self-explenatory and you should be able to fix them easily

Member Avatar for JamesCherrill
0
3K
Member Avatar for prams_1

Simple advice, do not do these computations on device. Send request to server, let server deal with it and then push alert to device

Member Avatar for peter_budo
0
244
Member Avatar for darrylnuyda

Its all here http://ambraproject.org/trac/wiki/QuickStart If you have problem to follow guideline, I suggest you ask on their mailing list

Member Avatar for peter_budo
0
149
Member Avatar for VernonDozier

@Hauth don't you think that after 2 years the issue is either solved or long time abandoned?

Member Avatar for Doogledude123
0
4K
Member Avatar for LoSuper

Trying to re-invent the wheel Did you check out default Android calendar? Would be good start and think why they di it this or that way. Having multiple columns that are scrollable separatly is just bad idea. If you still insist on re-inventing wheel then try to build around designs …

Member Avatar for peter_budo
0
249
Member Avatar for Mya:)

Sorry to say, but this is developer section not software support. You better ask on BalckBerry own tech forum

Member Avatar for peter_budo
0
128
Member Avatar for shivakr

The End.