Android :: Good Guidelines For Developing Ecommerce Application

Jun 9, 2010

I'm making an ecommerce application on Android and, as it is my first serious project, I'm trying to figure out beforehand the best approach to do this.The application talks to a web service (magento api, meaning soap or xml rpc unfortunately) and gets all the content on the phone (product categories, product details, user credentials etc.). I think it should do lazy loading or something like that.

So, I was thinking to keep the user credentials in a custom Object which will be kept in a SharedPreferences so that every Activity cand easily access it. I'll use a couple of ListViews to show the content and AsyncTask to fetch the data needed. Should I keep all the data in memory in objects or should I use some sort of cache or a local database? Also, I'm planning to use a HashMap with SoftReferences to hold the bitmaps I am downloading. But wouldn't this eat a lot of memory?How cand all the activities have access to all these objects (ecommerce basket etc.)? I'm thinking of passing them using Intents but this doesn't seem right to me. Can SharedPreferences be used for a lot of objects and are there any concurrency issues?

Any pointers would be really appreciated. What are some good guidelines? What classes should I look into? Do you know of any resources on the Internet for me to check out?

Android :: Good guidelines for developing ecommerce application


Android :: Developing A Dictionary Application

Mar 23, 2010

I am currently learning to develop Android applications, and to do this I have decided to develop a dictionary application. The UI, and search facilities are no problem to implement, but my question is, what is the best way to store the entries and definitions for the dictionary? Would XML be the best approach? I would be looking to include 500 - 1000 entries.

View 3 Replies View Related

Android :: Developing Pdf Viewer Application?

Sep 23, 2010

I'm interested in developing a pdf viewer applications for the android platform. Can anyone give me some kind of idea to begin with?

View 5 Replies View Related

Android :: Developing One Application - Getting Exception?

Sep 9, 2010

I am developing one application in which i am getting an exception, and i know this one is the silly or small mistake which i am doing but your help may catch me out and make my day:

CODE:.......

In above code, if i make i=0 or i=1 in tryDemo function then it is running successfully , but if i make it other than 0 or 1 then it throws an exception as "Demo - Demo Exception".

I am not sure but i think the exception raises from getApplicationContext().

Update:- 1
The exception which i am getting, as follows:

Update:- 2
If I remove the "thread" part and wrote the whole function code in the button click event and replaced the "getApplicationContext()" with v.getContext() then it is running successfully.........but i want to implement it within the THREAD.

View 4 Replies View Related

Android :: Developing An Application - AdMob

Dec 10, 2009

I am developing an application in which I have used AdMob. When I run the application on emulator the it runs proper i.e. I get ads near about 8 times out of 10 requests. But when I run it through handset, the response get decremented i.e. I get near about 1 to 2 ads out of 10 to 20 requests.

View 3 Replies View Related

Android :: Start Developing Mobile Application

Sep 8, 2010

I have developed web applications but know i'm thinking to get hands on Mobile Application. So how to i start it n from where coz i have no idea about Android,iPhone,Symbian etc.. nor i dn't have a big Phone to know how applications runs on it..mainly i want to focus on Android Applications, is there any simulator for Android Phones, i dn't even know how to use simulators..I just need a step-by-step tutorial for mobile app development n Android Application.

View 1 Replies View Related

Android :: Developing Application Which Support All Versions And Screens

Jul 19, 2010

I want to develop application that should support all version (latest and old) and it should adjust screen resolution (large,medium). I read document. There I found legacy application if I develop application in 1.6 there I am giving:

<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="4"/>

Is it good way to develop application and is it support 1.5 and 1.5+. Users able to find my application there market.

View 4 Replies View Related

Android :: Developing Application For Multiple Screen Support?

Mar 6, 2010

I want to develop UI of the application which looks similar on all screen sizes. I have gone through the Android developer article regarding this. I am using supports-screen tag but then also the screen is displayed not displayed properly in the larger screens. The screen is displayed properly in HVGA and not in WVGA.

I have developed the application using Android 1.6 and set the minimum SDK version as 4. The application is running properly on HVGA avd but not on WVGA avd. Can I know the reason for it? Is there any solution for this? I want that the user interface of the application should look uniform in all the handsets.

View 3 Replies View Related

Android :: Developing Cross Platform Mobile Application

Jul 30, 2010

More and more mobile platforms are being launched and sdk's are available to developers. There are various mobile platform are available,Android,iOS,Moblin,Windows mobile 7,RIM,symbian,bada,maemo etc.

And making of corss platform application is headache for developers. I am searching common thing across the platforms which will help to developers who want to port application to all platforms.Like what is the diff screen resolution, input methods, open gl support etc. please share details that you know for the any of platform . or is there possibilities , by writing code in html (widget type of thing) and load it into native application. I know about the android , in which we can add the web view into application. by calling setContentView(view)

Please share the class details where we can add the html view into native application of different type of platforms that you know.

Purpose of this thread is share common details across developers. marking as community wiki.

Cross platform tools & library

View 5 Replies View Related

Android :: Android Developing For Tablets Harder Than Developing For IPad?

Apr 17, 2010

First of all, I just want to say I am a software developer, but I am not an Android developer. However I usually walk around and think on stuff. AndI've been recently thinking all the news concerning how fragmented Android is getting, with different Android versions and tweaks by different phone manufacturers, and then for developers you have different size formats. An example would be that HTC Tattoo might not be able to run everything that another phone might run, due to different screen formats, etc. And now the Android tablets are coming with different Android versions and different screen sizes, all from 5" to 11". Will this make developing Android applications harder? Apple has it safe here since they manufacturer all devices that run the iPhone OS: the pods, phones and now the pad so they can easily control and make sure not to loose any customers by introducing a new device. When Apple introduced iPad they had to make sure that all the old iPhone applications would work on the iPad. They solved that neatly by saying that iPhone applications will simply be stretched out to the double size and it would fit on the iPad. Unfortunately Android does not have the same luxury to do this. As I said, I am not an Android developer. Just a curious software developer For you guys who work actively in the Android community, does Google have a solution for this? Will you be able to run phone applications on the tablets? Is there a bridge between the devices? Are there any standardizations or will Android development become even more fragmented? you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-devel

View 2 Replies View Related

Android :: Private Fields Naming Guidelines

Jan 25, 2010

Here http://source.android.com/submit-patches/code-style-guide#shortmethods it is stated that :

"Field Names
* Non-public, non-static field names start with m.
* Static field names start with s.
* Other fields start with a lower case letter.
* Public static final fields (constants) are ALL_CAPS_WITH_UNDERSCORES.

also states that : "The rules below are not guidelines or recommendations, but strict rules. You may not disregard the rules we list below except as approved on a need-to-use basis." I don't like the "m" convention before private or package fields in a class... I really find this uninspired. I mean, if we try to apply good designs, the low coupling of the classes implies having few public fields. actually, in my programs I usually have no public fields, even when I need some I use getters and seters. so, why should I be forced to have almost all my fields in the program with an "m" in front of them? wouldn't be easier to have the few public fields, if there are any, with some "g" in front or something? or just use setters and geters as beans suggest? this really makes my code harder to read. also, following these guidelines, local temp variables used in the methods have no restriction so they could easily be mistaken for public global fields (also without restriction). this also I find to be wrong, as it is a probable source of mistakes. I understand to have a way of differentiating from fields, but private/protected member fields are the most used in an application, they shouldn't be less "readable". what do you think? should I follow the guidelines?

View 1 Replies View Related

Android :: Suggestions For Phone Project Guidelines

May 19, 2010

Im trying to prepare a set of guidelines and project template for my future Android projects. Im already implementing the basic MVC architecture modularity. Im trying to have add more advanced level of design to my Android projects to make my development easier and maintainable. For example can someone suggest me a way to make Intent calls to Activity without explicitly mentioning the class while creating the Intent. Im trying to loose couple the intent calls and hopefully use AndroidManifest to assign action to an activity which then can be called globally within the application.Any other type of suggestions are welcome. Also please suggest any kind of coding conventions that you might be using yourself.

View 1 Replies View Related

Android : Guidelines For Start Up / Error With WiFi

Aug 22, 2010

Today I got my first android phone. It is the Samsung Galaxy Spica.I don' t know anything about android phones so I need someone to show the first steps and explain to me the specifications of this operating system.I have a problem with my WiFi. The phone finds my network, I give the password but it says "Connection failed". Can anyone help me?

View 7 Replies View Related

Android :: Where Can I Find Information About 2.x Icon Design Guidelines?

Feb 10, 2010

Assuming that old Icon design guidelines are not valid anymore, where can we find information about the guidelines to follow to design "new-styled" 2.X launcher icons?Should applications provide icons for both icon styles if they work for both versions?

View 1 Replies View Related

Android :: Developing Maps Application Using Maps Javascrpt V3 Api

Aug 31, 2010

hello all, i am trying to develop a google maps application for android enabled phones using the javascript v3 api released by google.. but i do not understand how to code the entire thing in android.. cuz as far as i am concerned i have only used java code for developing an application in android.. my last semester project consisted of a client application for picasa web albums.. the complete code was written in java.. i am new to use javascripts.. has anyone developed an application for android using javascripts before?? if yes i need your help.. i need to start the project soon..

View 2 Replies View Related

Android :: Need Notepad Application - Any Good App?

Dec 10, 2009

I am looking for a notepad that looks like the I Phone notepad. Any one know a good note app for this?

View 37 Replies View Related

Android :: Good Todo Application

Oct 5, 2010

I know that this is probably somewhere else but I am unable to find it. But I am looking for an App that will give me a todo list on a daily basis. What I would like to do is add to-do's several days in advance, and each day have it compounded and then as I complete tasks I can remove them from the list and from day to day it would keep adding to the uncompleted tasks from the day before.

View 6 Replies View Related

Android :: Good Music Streaming Application?

Nov 29, 2009

good music streaming app? Don't say panadora tried it and just get pissed everytime because I can never find a song I want and it always plays random shit I don't want.

View 8 Replies View Related

Android :: Good Music Application With Widget?

Jul 13, 2010

Can anyone recommend a good music app with a widget? Am thinking of using the stock player with the Desire but am on the lookout for a good player within the market.

View 6 Replies View Related

Android :: Good Practices For Building Web Application

Sep 10, 2010

can you advice me a book or something else containing good practices about how to build/structure a web application in a way that will be easy to extend it with an Android/iPhone version later.I am currently trying to get into Django so it will be nice if the practices are related to it.

View 1 Replies View Related

Android :: How Big Is Market For A Good Memo Application?

Dec 16, 2009

Many of us have expressed a desire for a proper Memo application on Android, similar in functionality to the Palm OS. Necessary features include: support for multiple memos, quick access to view and edit multiple memos, ability to organize memos into categories or with tags, ability to search through all memos at once, ability to synchronize memos with desktop and/or the cloud. This poll is designed to show potential developers that there is a market for such an app.

View 48 Replies View Related

Android :: Recommendation For Good Footy Application?

Jan 20, 2010

Can anyone recommend a good footy app, aimed specifically at the English premier league? I already have FotMob 4.0 but the interface is a little awkward in that there is not enough room to view the RSS feed, the menu part of the screen takes up too much real estate and there doesn't appear to be any way to get rid of it.

View 1 Replies View Related

Android :: Good Sports Tracker Application?

Sep 9, 2010

I used to have a great one on Nokia (!) called Sports Tracker but I can't find anything in the market place which looks similar. Any recommendations gratefully received.

View 2 Replies View Related

Android :: Any Good Email Application For Galaxy S?

Sep 16, 2010

Looking for a good email app for my Samsung Epic (Galaxy S). It is essential that I not have to have a Gmail account to download it as I have problems once I setup Gmail. I need POP3 and IMAP, and I have multiple accounts. The only thing I see by searching is K-9. I would appreciate any user experiences with the app, and I am open to other alternatives.

View 1 Replies View Related

Android :: Looking For Good Calendar Application For Droid 2

Aug 15, 2010

I don't like the stock calender for the Droid 2 and am wondering if anyone can recommend a good calender app. I have an iPod touch and I like the calender on there (bright, bubbly, and easier to see from the monthly view when you have an event on a specific day).

View 25 Replies View Related

Android :: Good Ways To Promote Application

May 24, 2010

I'm a new Android developer and I just released a free, open source tipping calculator app called Tippy Tipper.I created this app to get myself familiar with Android and to hopefully provide a good example app for other new developers to look at.Now that I've overcome the challenges of learning how to program, test and release my Android app, I've come across a new challenge: marketing!What are some good ways to promote my app to the Android community? Can anyone with some experience talk about how they did this successfully with their own app?

View 1 Replies View Related

Android : Which Layout Is Good For Quiz Application

Apr 2, 2009

I am a android beginner, now i am going to design a Quiz application for android I am very confuse about which layout i should use for Quiz. My requirement is when user touch the answer , the next question will appear on same screen and at the end of quiz the web view will be generated as a result page. Right now i don't have in depth knowledge of Layouts and switching the view when user clicks on Answers. Please help me at least suggest me Which layout i use.

View 2 Replies View Related

Developing Chat Application That Interacts With Chat Server On PC?

Apr 11, 2012

I'm developing a chat application that interacts with a chat server on a pc. I've created a login page that has a predefined username as password within it, however i wish to implement a system that checks the login name and password to a database. The coding for the login page is:

Quote:

package com.svennevik.andriod;

import android.app.Activity;
import android.app.AlertDialog;[code].....

View 5 Replies View Related

Android :: Any Good Security Screen Lock Application?

Jun 2, 2010

Remember there used to be interesting one, with 9 dots, draw to unlock screen. Is that still available or there is some better choice?

View 1 Replies View Related

Android :: Good Science/space News Application

Dec 20, 2009

Does anyone know of a good science/space news application (with widget would be great)?

I figured I would have plenty to pick from but haven't found anything good. I've found some good general news applications but the science sections have been rather slim on articles.

I love hearing the latest science and space news and just want something that will give me plenty to look at in a nice and pleasant way. Something similar that works similar to the Tech Buzz widget would be great.

View 2 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved