5,031 Posted Topics
Re: javascript , html5 and cSS3 is not native android development. PhoneGap is now called Cordova and you can find their documentation [here](http://cordova.apache.org/docs/en/3.4.0/) and for Titanium over [here](http://docs.appcelerator.com/titanium/latest/) | |
Re: @olelink as you already seen people are not willing to help because they do not trust you, your judgement, your possible needs. By demand post closed another like this it will be treated under Keep It Legal rule | |
Re: You failed to specify what operaring system you want to develop for ANdroid or iOS... | |
Re: Never tried to do such think. However I found this post on [stackoverflow](http://stackoverflow.com/questions/6668271/get-cell-tower-locations-android) that discusses extracting data from current connection. So based on that I looked up [ServiceState](http://developer.android.com/reference/android/telephony/ServiceState.html) and that has `getOperatorAlphaLong()` methd that according documentation > Get current registered operator name in long alphanumeric format. So you are able … | |
Re: I used to be with [DailyRazor](http://www.dailyrazor.com/java-jsp-hosting) before I moved to VPS with [Linode](http://www.dailyrazor.com/java-jsp-hosting) | |
Re: If you found solution please share with community, do not just mark thread as solved. | |
Re: Because you are missing `@Override` annotation with method call `onCreate` and `onClick`. These are there for reason! | |
Re: You need to install one of the Java container or as they often called Java servers. Most common [Tomcat](http://tomcat.apache.org/), [Jetty](http://www.eclipse.org/jetty/) or [JBoss](http://jbossas.jboss.org/) | |
Re: Apache Tomcat 7 - [Security Manager HOW-TO](http://tomcat.apache.org/tomcat-7.0-doc/security-manager-howto.html) happy reading | |
List followed by code snippet does not render properly. Example * Item One * Item Two * Item Three Log.i(MainActivity.class().getSimpleName(), SOME_MESSAGE); //info Log.d(MainActivity.class().getSimpleName(), SOME_MESSAGE); //debug Log.w(MainActivity.class().getSimpleName(), SOME_MESSAGE); //warning Log.e(MainActivity.class().getSimpleName(), SOME_MESSAGE); //error | |
Re: Secondly there is always this [JSP database connectivity according to Model View Controller (MVC) Model 2](http://www.daniweb.com/web-development/jsp/threads/141776/jsp-database-connectivity-according-to-model-view-controller-mvc-model-2) | |
Re: GridLayout takes a collection of items. So you need to design layout of a singular item. Then you create adapter, tell it to use your item layout, provide and provide collection of data you want to populate your grid with. You can read on it here http://developer.android.com/guide/topics/ui/layout/gridview.html BTW, if I … | |
Re: [Here you go](http://lmgtfy.com/?q=android+google+maps+location+tutorial&l=1) | |
Re: You need to expand description of "online test application"... | |
Re: All is explained in Android documentation http://developer.android.com/guide/practices/screens_support.html | |
Re: As I mentioned before in your other thread (that you did not close) design for mobile apps is not same as design for web sites. XML extract of layout that you posted is actually what you need to show image on screen. However beside required stuff you did (layout width … | |
Re: [Android Studio](http://developer.android.com/sdk/installing/studio.html) is becoming industry standart with better features then Eclipse | |
Re: @aliieb do not expect people to go and check your websites. Post your code and explain what is expected and what is actual result. Also I'm inclined to move this to web development since fixing html is not part of native mobile development for Android, iOS or Windows ![]() | |
Re: Any website is accessible by mobile devices these days. You just need to learn restrictions and serve appropriate content, therefore browser and operating system detection is important | |
Re: All you [need to know](http://developer.android.com/training/index.html) | |
Re: 1. Increase quality of the app, fix crashes and bugs 2. Implement functionality requested by users 3. Interact with people that commented on app | |
Re: Upgrading Java is no so hard job https://help.ubuntu.com/community/Java | |
Re: Yes you can. Simple example, each of Pending Jobs, Incoming Jobs, Closed Jobs is simple button. On click you will trigger loader or async task to get job results. Once you get results, you forward them to new activity and show them in list. Depending on what additional data you … | |
Re: You ask help about Android app and you post code from your website? Where is common sense of solving issue? How someone can find problem in your Android app if you fail to provide appropriate code for problematic section? | |
Re: Then you did not search properly, otherwise even before your first post you would have found [JSP database connectivity according to Model View Controller (MVC) Model 2](http://www.daniweb.com/web-development/jsp/threads/141776/jsp-database-connectivity-according-to-model-view-controller-mvc-model-2) that is actually first entry in JSP section of this forum. | |
Re: web app is actual website. It is common that what ever response website is getting can be consumed by mobile application as this content is send in JSON format. Here is a list of APIs you may want to have look at http://blog.programmableweb.com/2012/02/28/134-travel-apis-kayak-yahoo-travel-and-hotelscombined/ and maybe you can try to integrate … | |
Re: With your number of posts you should know better then just drop code with no exact error | |
Re: Then you should not posted at all because if they never learn basic they will fail. It is OK to help with attempt when someone tried and got catch in some circumstances that may not be obvious. However provide solution beforehand is plain bad. | |
![]() | Re: Android SDK requires that you have instalation of Java 6 not Java 7 or 8. So uninstall it and get proper version ![]() |
Re: 1)Flash is not supported as of Android 4.1 which was one of the annoucments of Google IO 2012 so you already limiting your market 2)You seriously expect some one to write you app for free??? | |
Re: [QUOTE=warlord902;1709269]I have another query. When i started learning Servlets and JSP, i come to know that whenever we make any changes in our website project files, then we need to restart our server to implement those changes. Now suppose when my website is accessed by thousands of people each second/minute, … | |
Re: You may find it in school library if you look for it, is one of common titles and NO there is not electronic version, if there is then it is illegal | |
![]() | Re: You do not need C++ and PHP. rubberman was trying to say that any knowledge of programming language especially object oriented language would speed up your learning process. Therefore grasping basic of Java should be your main goal ![]() |
Re: Encapsulate your current `LinearLayout`inside `ScrollView` http://developer.android.com/reference/android/widget/ScrollView.html job done | |
Re: No matter which IDE you use there is a logcat which will tell you where error exactly happen. So check it out and stop posting generic error that you see on device screen. You are wasting our time | |
Re: [QUOTE=deepas;1063551]thanks sknake,its a v good reply for the asked help.i also read it & found useful.but what i've problem is i want to first show the image name that is stored in database, and when user clicks in the image name,it would be opened in new web page.actually i am … | |
Re: I think you forgot to change URL to string, so you can't apply String method replaceAll() to url This can help you [code] import java.net.URL; import java.net.MalformedURLException; public class ReplaceChar { public static void main(String[] args) { try { URL url = new URL("http://www.peter-peter.pe"); url = new URL(url.toString().replaceAll("e", "i")); System.out.println(url.toString()); … | |
Re: Get public IP and configure your server to expose service | |
Re: Sorry to say, but hardly anyine does Android development on Windows machines down to various issues with configuration. Secondly Eclipse is such mess. Try to isntall Android SDK from [zip](http://dl.google.com/android/android-sdk_r22.3-windows.zip) instead of automated installation (do not forget to modify your system path and ANDROID_HOME there). Aso I would recommend to … | |
Re: You forgot to mention what difficulties??? ,but this seems to be obvious. You do not know how to use Scanner ! ! ! So take your time and read API reference for Scanner [url]http://java.sun.com/javase/6/docs/api/java/util/Scanner.html[/url] and do it. Methods like nextLine(), nextInt() or nextDouble() can be your friends... But consider that … | |
Re: @26bm nobody wants to support Adobe Flash, and even Adobe it self drop support for it in Android 4.2 so waste of time Android dev tools would be AndroidStudio, IntelliJ or Eclispe. However I'm not aware of visual game creators in them. They do have UI components for usual stuff … | |
Re: You are performing network activity on UI thread!!! Ggrrrrrrrrrr!!!! This is big NO! Read this http://developer.android.com/training/basics/network-ops/connecting.html | |
Re: Well done James and thank you for kind words to estranged Jave developer! Yes I do Android but that is different story ;) | |
Re: Why did yu created second account to ask about Google maps? Why aren't you continueing with your other post http://www.daniweb.com/software-development/mobile-development/threads/473568/how-do-i-create-a-box-to-hold-text-below-google-maps-within-android | |
Re: If you want to send SMS follow advice [here](http://android-developers.blogspot.co.uk/2013/10/getting-your-sms-apps-ready-for-kitkat.html) to send email use Intent [ACTION_SEND](http://developer.android.com/reference/android/content/Intent.html#ACTION_SEND) | |
| |
Re: You just need to add EditText bellow your fragment in your layout | |
Re: `java.awt.event.ActionEvent` in Android since when? | |
Re: Application context `getApplicationContext()` is different then View context `getContext` or as in your case `MyActivity.class` (both means same). Real difference in usage is only what part of lifecycle of the activity or whole application you will be affecting with whatever you about to do. So if you need a context … | |
Re: Above editing area you can see tools bar and in there one of the buttons is `</> Code`. just click on it, it will pop sort of window where you can paste your code and hit button bellow to include in your post. Job done |
The End.