http get android app crashes no result nor error

166 Views Asked by At

First of all, i'm pretty new to Java and i'm trying to make an app for home automation. On the server side I have a PHP script that will toggle my lights, now I would like to send a Get request with android to run the PHP script since that PHP is server side. Now when i push the button, the app "just" crashes, nothing in the log.

this is my code for the button:

Button bA = (Button) findViewById(R.id.button);
    bA.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            try {
                HttpClient httpclient = new DefaultHttpClient();

                HttpGet request = new HttpGet();
                URI Aswitch = new URI("http://192.168.1.186/a-switch.php");
                request.setURI(Aswitch);
                HttpResponse response = httpclient.execute(request);

            } catch (ClientProtocolException e){
                Log.e("log_tag", "ClientProtocol error");
            } catch(IOException e){
                Log.e("log_tag", "IO error");
            } catch(URISyntaxException e) {
                Log.e("log_tag", "URISytax error");
            }


        }
    });
2

There are 2 best solutions below

2
On BEST ANSWER

try this:

    Button bA = (Button) findViewById(R.id.button);
    bA.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {


            new Thread(new Runnable() {

                public void run() {
                    try {
                        HttpClient httpclient = new DefaultHttpClient();

                        HttpGet request = new HttpGet();
                        URI Aswitch = new URI("http://192.168.1.186/a-switch.php");
                        request.setURI(Aswitch);
                        HttpResponse response = httpclient.execute(request);

                    } catch (ClientProtocolException e){
                        Log.e("log_tag", "ClientProtocol error");
                    } catch(IOException e){
                        Log.e("log_tag", "IO error");
                    } catch(URISyntaxException e) {
                        Log.e("log_tag", "URISytax error");
                    }

                }
            }).start();


        }
    });
0
On

Maybe you are making this request on the main thread. Use AsyncTask to do your networking request. Also don't forget to add the permission android.permission.INTERNET to the manifest file