Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am working on my first Android app. The first one I have ever built. I have learned everything while I was building the app, and each time I ran into an issue I figured it out myself using Google. Now the app is working right now the way that I want it to work..at least for this first version. I am not ready to put it on the market yet..there are 2-3 more "versions" I want to finish first. Right now, that I have gotten it to where I want it for version one, I want to essentially get a code review. Any feedback, constructive criticism, or anything I can do better would be greatly appreciated. I have learned a lot during htis process, and want to make sure I am doing everything the right way. The entire app is working the way I currently want it to for "version One" but I intend to add a lot more too it. All the code for my various files can be found below.

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="gaspricefinder.gsf"
      android:versionCode="1"
      android:versionName="1.0">
    <application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
        <activity android:name="MainActivity"
                  android:label="Gas Price Finder"
                  android:clearTaskOnLaunch="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"></uses-permission>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>

main.xml

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<TextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:scrollbars = "vertical"
    />
</LinearLayout>

Json.java

 package gaspricefinder.gsf;

 import java.io.BufferedReader;
 import java.io.InputStream;
 import java.io.InputStreamReader;
 import org.apache.http.HttpEntity;
 import org.apache.http.HttpResponse;
 import org.apache.http.client.HttpClient;
 import org.apache.http.client.methods.HttpGet;
 import org.apache.http.client.methods.HttpPost;
 import org.apache.http.impl.client.DefaultHttpClient;
 import org.json.JSONException;
 import org.json.JSONObject;

 /**
  *
  * @author Joyel
  */
 public class Json {

public static JSONObject getJson(String url, String method){

    InputStream is = null;
    String result = "";
    JSONObject jsonObject = null;

    // HTTP
    try {           
                if ("get".equals(method)){
        HttpClient httpclient = new DefaultHttpClient(); // for port 80 requests!
        HttpGet httpget = new HttpGet(url);
        HttpResponse response = httpclient.execute(httpget);
        HttpEntity entity = response.getEntity();
        is = entity.getContent();
                }else if ("post".equals(method)) {
        HttpClient httpclient = new DefaultHttpClient(); // for port 80 requests!
        HttpPost httppost = new HttpPost(url);
        HttpResponse response = httpclient.execute(httppost);
        HttpEntity entity = response.getEntity();
        is = entity.getContent();                        
                }
    } catch(Exception e) {
        return null;
    }

    // Read response to string
    try {           
        BufferedReader reader = new BufferedReader(new InputStreamReader(is,"utf-8"),8);
        StringBuilder sb = new StringBuilder();
        String line = null;
        while ((line = reader.readLine()) != null) {
            sb.append(line + "\n");
        }
        is.close();
        result = sb.toString();             
    } catch(Exception e) {
        return null;
    }

    // Convert string to object
    try {
        jsonObject = new JSONObject(result);            
    } catch(JSONException e) {
        return null;
    }

    return jsonObject;

}

 }

MainActivity.java

// Package name
package gaspricefinder.gsf;

// Necessary imports
import android.app.Activity;
import android.content.Context;
import android.location.Location;
import android.location.LocationListener;
import android.location.LocationManager;
import android.os.Bundle;
import android.text.method.ScrollingMovementMethod;
import android.widget.TextView;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

public class MainActivity extends Activity {
private LocationManager mlocManager;
private LocationListener mlocListener;

/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    TextView tv = new TextView(this);
    tv.setMovementMethod(new ScrollingMovementMethod());

    String applicationText;

    applicationText = "This app was created by Joyel Puryear (Infotechnologist.biz). It is a simple app that gets your current GPS Longitude and Latitude"
            + " and returns a list of gas stations within your area, and the associated pricing.  This is the first app I have ever released, and more "
            + "improvements will be made to it in the future. Please keep in mind, that this is my very first app." + "\n\n";

    mlocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);

    mlocListener = new MyLocationListener();

    mlocManager.requestLocationUpdates( LocationManager.GPS_PROVIDER, 0, 0, mlocListener);

    Location location = mlocManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);

    applicationText = applicationText + "Obtained Longitude: " + location.getLongitude() + "\n";
    applicationText = applicationText + "Obtained Latitude: "  + location.getLatitude()  + "\n";

    // API Key: g7slhsg67l (www.mygasfeeds.com)
    JSONObject json_response = Json.getJson("http://api.mygasfeed.com/stations/radius/" + location.getLatitude() + "/" + location.getLongitude() + "/5/reg/price/g7slhsg67l.json", "get");

    try {
        // Get the status and error for checking.
        JSONObject status = json_response.getJSONObject("status");
        String     error  = status.getString("error");
        // Make sure there are no errors, before continuing.
        if ("NO".equals(error)) {
            JSONObject geoLocation = json_response.getJSONObject("geoLocation");
            applicationText = applicationText + "Stations near: "    + geoLocation.getString("city_long")    + ", "
                    + geoLocation.getString("region_long")  + " - "
                    + geoLocation.getString("country_long") + "\n";

            applicationText = applicationText + "\nBelow you will find the gas stations that are within the above area:\n\n";

            JSONArray stations = json_response.getJSONArray("stations");
            applicationText = applicationText + "\n-Gas Station List-\n";

            for (int i = 0; i < stations.length(); i++) {
                JSONObject row = stations.getJSONObject(i);
                applicationText = applicationText + "Station Name: " + row.getString("station") + "\n"
                        + "Longitude: "     + row.getString("lng")          + "\n"
                        + "Latitude: "      + row.getString("lat")          + "\n"
                        + "Address: "       + row.getString("address")      + "\n"
                        + "City: "          + row.getString("city")         + "\n"
                        + "Region: "        + row.getString("region")       + "\n"
                        + "Country: "       + row.getString("country")      + "\n"
                        + "Distance: "      + row.getString("distance")     + "\n"
                        + "Regular Price: " + row.getString("reg_price")    + "\n"
                        + "Regular Date: "  + row.getString("reg_date")     + "\n"
                        + "Medium Price: "  + row.getString("mid_price")    + "\n"
                        + "Medium Date: "   + row.getString("mid_date")     + "\n"
                        + "Premium Price: " + row.getString("pre_price")    + "\n"
                        + "Premium Date: "  + row.getString("pre_date")     + "\n"
                        + "Diesel Price: "  + row.getString("diesel_price") + "\n"
                        + "Diesel Date: "   + row.getString("diesel_date")  + "\n"
                        + "Diesel: "        + row.getString("diesel")       + "\n"
                        + "\n\n";
            }
        }
    } catch (JSONException ex) {           
      applicationText = applicationText + "Parsing JSON: Error Parsing JSON\n";
      applicationText = applicationText + ex;
    }

    tv.setText(applicationText);

    setContentView(tv);
}

@Override
protected void onResume() {
    mlocManager.requestLocationUpdates(mlocManager.GPS_PROVIDER, 0, 1, mlocListener);
    super.onResume();
}

@Override
protected void onStop() {
    super.onStop();
    mlocManager.removeUpdates(mlocListener);
    finish();
}

@Override
protected void onPause() {
    mlocManager.removeUpdates(mlocListener);
    super.onPause();
}

public class MyLocationListener implements LocationListener {

    @Override

    public void onLocationChanged(Location loc) {

    }

    @Override

    public void onProviderDisabled(String provider) {

    }


    @Override

    public void onProviderEnabled(String provider) {

    }


    @Override

    public void onStatusChanged(String provider, int status, Bundle extras) {

    }

}/* End of Class MyLocationListener */
}

I don't need "help" with anything. All I want is a code review, so I can make sure I am on the right track before starting to get into (and learn) more advanced areas of Android development. Any suggestions whatsoever is appreciated. I want to become the best Android developer I can, and the only way that'll happen is through a lot of community feedback.

share|improve this question
3  
This belongs at codereview.stackexchange.com, not here. – AHungerArtist Apr 23 '12 at 2:24
2  
I did not even know that existed. Thanks I will replicate this over there tomorrow. Thanks for letting me know, that might be useful for a lot of things in the future. – infotechnologist Apr 23 '12 at 2:30

closed as off topic by Bill the Lizard Apr 24 '12 at 13:31

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

2 Answers

up vote 6 down vote accepted

I don't know if StackOverflow is the best forum to get your code "reviewed". Anyway, quickly scanning your code one thing that is pretty wrong/bad:

   JSONObject json_response = Json.getJson("http://api.mygasfeed.com/stations/radius/" + location.getLatitude() + "/" + location.getLongitude() + "/5/reg/price/g7slhsg67l.json", "get");

You're getting the data from the server in the UI thread. You shouldn't (your app will effectively crash in ICS), you need to use an AsyncTask. You're also doing this in onCreate which means your activity won't show anything until it gets this data, which is also pretty bad. Using an AsyncTask will deal with this too.

Second, you should have a proper model for your data, instead of just dumping everything into a String :) . Create a proper GasStationData and make your "service call" return to you a GasStationData[]. It will clean up your code quite a bit.

Third:

TextView tv = new TextView(this);
    tv.setMovementMethod(new ScrollingMovementMethod());

That's not the right way to create a scrolling container. The ideal way would beto wrap your linear layout inside a ScrollView. Even better: learn about ListViews.

share|improve this answer
Yes, I saw someone just posted another place to get my code reviewed. I didn't even know that place existed. I will be moving it there tomorrow. Sorry about that. Thanks for the feedback, I will review your feed back and take that into account. Tomorrow I will move it to the other site. – infotechnologist Apr 23 '12 at 2:31

It's conventional to put the <uses-permission ...> tags before <application>.

Likewise, it's conventional to put <uses-sdk ...> up front as well. Set minSdkLevel to the lowest API level you support and targetSdkLevel to the version of the SDK you're building against, unless you are sufficiently advanced to know why you want not to. If you don't know which minSdkLevel to use, then I suggest 8.

fill-parent is deprecated; use match-parent instead.

Don't put any user-visible strings in your code; put them in string resources instead.

Don't do any networking or file I/O in your main thread; use a Service or AsyncTask for all operations that don't finish pretty much immediately.

share|improve this answer
Thanks, will review what you said and make adjustments. Going to move this to another place tomorrow, didn't know it existed. Thanks for the feedback. – infotechnologist Apr 23 '12 at 2:31

Not the answer you're looking for? Browse other questions tagged or ask your own question.