How to get Hight/Low temperture and city name then show it in textview

package com.ParseXML;

import java.net.MalformedURLException;
import java.net.URL;

import javax.xml.parsers.SAXParser;
import javax.xml.parsers.SAXParserFactory;

import org.xml.sax.InputSource;
import org.xml.sax.XMLReader;



import weather.GoogleWeatherHandler;
import weather.WeatherCurrentCondition;
import weather.WeatherSet;

import android.app.Activity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.EditText;
import android.widget.TextView;

public class ParseXML extends Activity {
    EditText et;
    Button bt;
    TextView tv1,tv2;
    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        et = (EditText)findViewById(R.id.editText1);
        bt = (Button)findViewById(R.id.button1);
        tv1 = (TextView)findViewById(R.id.textView1);
        tv2 = (TextView)findViewById(R.id.textView2);
        bt.setOnClickListener(new View.OnClickListener() {

            @Override
            public void onClick(View v) {
                // TODO Auto-generated method stub
                URL url;
                try
                {
                    /*Get what user type in edittext */
                    String city = ((EditText) findViewById(R.id.editText1)).getText().toString();
                    String queryString = "http://www.google.com/ig/api?weather="
                        + city;
                    /* Replace blanks with HTML-Equivalent. */
                    url = new URL(queryString.replace(" ", "%20"));
                    /* Get a SAXParser from the SAXPArserFactory. */
                    SAXParserFactory spf = SAXParserFactory.newInstance();
                    SAXParser sp = spf.newSAXParser();

                    /* Get the XMLReader of the SAXParser we created. */
                    XMLReader xr = sp.getXMLReader();
                    /*
                     * Create a new ContentHandler and apply it to the
                     * XML-Reader
                     */
                    GoogleWeatherHandler gwh = new GoogleWeatherHandler();
                    xr.setContentHandler(gwh);
                    /* Parse the xml-data our URL-call returned. */
                    xr.parse(new InputSource(url.openStream()));

                    /* Our Handler now provides the parsed weather-data to us. */
                    WeatherSet ws = gwh.getWeatherSet();

                    /* Update the ParseXML with the parsed data. */
                    updateWeatherInfoView(R.id.textView1, ws
                            .getWeatherCurrentCondition());
                }catch(Exception e)
                {

                }
            }

            private void updateWeatherInfoView(int aResourceID,
                    WeatherCurrentCondition aWCIS) throws MalformedURLException {
                // TODO Auto-generated method stub

            }
        });
    }
}

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:text="@string/hello"
    />
<EditText android:layout_width="match_parent" android:text="EditText"
    android:id="@+id/editText1" android:layout_height="wrap_content"></EditText>
<Button android:text="Button" android:id="@+id/button1"
    android:layout_width="wrap_content" android:layout_height="wrap_content"></Button>
<TextView android:text="TextView" android:id="@+id/textView1"
    android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
<TextView android:text="TextView" android:id="@+id/textView2"
    android:layout_width="wrap_content" android:layout_height="wrap_content"></TextView>
</LinearLayout>
link|improve this question
feedback

closed as not a real question by Will Aug 8 '11 at 12:25

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.

2 Answers

You can do Autocomplete one.When the user start type, it will short city name according to your type word.After shorting name, when you click on that city name, will laod other activity or popup window, it show all data according your city name...

Updated

 public class AutoCompleteSampleActivity extends Activity {

static final String[] COUNTRIES = new String[] {
      "Afghanistan", "Albania", "Algeria", "American Samoa", "Andorra",
      "Angola", "Anguilla", "Antarctica", "Antigua and Barbuda", "Argentina",
      "Armenia", "Zambia", "Zimbabwe"
    };

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    AutoCompleteTextView textView = (AutoCompleteTextView) findViewById(R.id.autocomplete_country);
    ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, R.layout.list_item, COUNTRIES);

 //   textView.setThreshold(3);
    textView.setAdapter(adapter);
    textView.setOnItemClickListener(new OnItemClickListener() { 

@Override
public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,
        long arg3) {

    Intent intent = new Intent(Main.this, CityDetails.class);
    Bundle bundle = new Bundle();

    bundle.putString("city_name", arg0.getItemAtPosition(arg2).toString());
    bundle.putLong("_id", arg3);
    intent.putExtras(bundle);
    startActivity(intent); 

}


}

After that create new Activity CityDetails.class

There

      Bundle bundle = this.getIntent().getExtras();
      String cityName= bundle.getString("city_name");
      // Here you call temperature method......

I should have 2 xml files one is 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="wrap_content"
    android:layout_height="wrap_content"
    android:text="Country" />
<AutoCompleteTextView android:id="@+id/autocomplete_country"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginLeft="5dp"/>

 </LinearLayout>

and another one list_item.xml

 <?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="10dp"
android:textSize="16sp"
android:textColor="#000">
</TextView>
link|improve this answer
i am newby. Do you have example – Smith Aug 8 '11 at 4:32
see edited code.... – Piraba Aug 8 '11 at 5:17
how about get Hight/Low Temperature. How can i do it?? – Smith Aug 8 '11 at 5:50
see updeted Code – Piraba Aug 8 '11 at 6:09
But Edittext button and listview is in the same page. – Smith Aug 8 '11 at 6:22
show 3 more comments
feedback

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