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.