How do I configure my Android emulator to access my localhost?

1.3k views Asked by At

I am attempting to change my Emulator's Network Address to 10.0.2.2 so that I can test it using PHP stored on my localhost, because 127.0.0.1 is the emulated system's own loopback interface, not the one running on my host development machine.

My systems knowledge is limited, so what part of the stack do I need to configure to achieve this exactly?

Do I need to change the default IP of my localhost on my host machine?

Do I need to configure something in the emulator setup?

Is there something I need to change in my connection code below?

public class UpdatePrediction extends AsyncTask<String, String, String> {

    String user;
    int success;
    Context context;

    // JSON parser class
    JSONParser jsonParser = new JSONParser();

    // JSON Node names
    private static final String TAG_SUCCESS = "success";
    private static final String TAG_PREDICTION = "prediction";
    private static final String TAG_OCCUPANCY_PREDICTION = "occupancy_prediction";

    private static final String url_prediction = "http://localhost/android_connect/get_prediction.php";

    /**
     * Getting product details in background thread
     * */

    public UpdatePrediction(Context context) {
        this.context = context;
    }

    protected String doInBackground(String... param) {

        SharedPreferences sharedPref = context.getSharedPreferences("user",
                Context.MODE_PRIVATE);
        user = sharedPref.getString("name", "codohert");
        Log.i("update", "started");

        try {

            // Building Parameters
            List<NameValuePair> params = new ArrayList<NameValuePair>();
            params.add(new BasicNameValuePair("pid", user));

            // getting product details by making HTTP request
            // Note that product details url will use GET request
            JSONObject json = jsonParser.makeHttpRequest(url_prediction, "GET",
                    params);

            // check your log for json response
            Log.d("Prediction Details", json.toString());

            // json success tag
            success = json.getInt(TAG_SUCCESS);
            if (success == 1) {
                Log.i("update", "success");
                // successfully received product details
                JSONArray predictionObj = json.getJSONArray(TAG_PREDICTION); // JSON
                                                                                // Array

                // get first product object from JSON Array
                JSONObject prediction = predictionObj.getJSONObject(0);

                String predict = prediction.getString(TAG_OCCUPANCY_PREDICTION);
                String shour = predict.substring(11, 12);
                String smin = predict.substring(14, 15);
                Integer hour = Integer.parseInt(shour);
                Integer minute = Integer.parseInt(smin);

                SetTime(hour, minute);
                return null;

            } else {
                Log.i("update", "failed");
                return null;
            }
        } catch (JSONException e) {
            Log.i("update", "catch");
            e.printStackTrace();
            return null;
        }
    }

    public void SetTime(int hourOfDay, int minute) {
        SharedPreferences sharedPref = context.getSharedPreferences(
                "prediction", Context.MODE_PRIVATE);
        SharedPreferences.Editor editorh = sharedPref.edit();
        editorh.putInt("prediction_hour", hourOfDay);
        editorh.commit();
        SharedPreferences.Editor editorm = sharedPref.edit();
        editorm.putInt("prediction_min", minute);
        editorm.commit();
        Toast.makeText(context, "Set Prediction", Toast.LENGTH_SHORT).show();

    }

}

Do I change the destination in my php file below?

db_config.php
<?php

/*
 * All database connection variables
 */

define('DB_USER', "root"); // db user
define('DB_PASSWORD', ""); // db password (mention your db password here)
define('DB_DATABASE', "habitabilitystudy"); // database name
define('DB_SERVER', "localhost"); // db server
?>

I have asked this question before and was told "Simply use 10.0.2.2 to connect to the localhost on your computer." and "Use your code to connect to the address." but I don;t know exactly what that was referring to.

1

There are 1 answers

2
Mohammad Rahchamani On BEST ANSWER

you should change your android client code, not your php script. just change the following line :

`private static final String url_prediction = "http://localhost/android_connect/get_prediction.php";`

to

 `private static final String url_prediction = "http://10.0.2.2/android_connect/get_prediction.php";`