Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- TextView tv = (TextView) findViewById(R.id.test_calendar_textTV);
- HttpGet request = new HttpGet("http://www.google.com");
- try {
- HttpResponse response = new DefaultHttpClient().execute(request);
- if(response.getStatusLine().getStatusCode() == HttpStatus.SC_OK){
- String result = EntityUtils.toString(response.getEntity());
- tv.setText(result);
- }
- } catch (IOException e) {
- e.printStackTrace();
- }
Advertisement
Add Comment
Please, Sign In to add comment