可能重复:
另一个屏幕中列表项的详细信息
当我选择一个项目时,我希望应用程序导航到第二个活动并获取所选项目的值以及第二个活动中存在的 TextView 的相关链接。代码应该可以工作,但是当我运行它时,模拟器会给我一条消息,说“不幸的是应用程序停止了”。我不知道该怎么做才能让它工作?
public class LastActivity extends ListActivity {
    /** Called when the activity is first created. */
    static List<String> links;
    List<String> names;
    @Override
    protected void onListItemClick(ListView l, View v, int position, long id) {
        // TODO Auto-generated method stub
        super.onListItemClick(l, v, position, id);
        String link=links.get(position);
        Intent intent = new Intent(getApplicationContext(),Details.class);
        intent.putExtra("name",names.get(position));
        intent.putExtra("url",link);
        Log.e("n",names.get(position)+"."+ link );
        startActivity(intent);
    }
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        links=new ArrayList<String>();
        names=new ArrayList<String>();
        try{
            URL url=new URL(webservice);
            XmlPullParserFactory factory = XmlPullParserFactory.newInstance();
            factory.setNamespaceAware(false);
            XmlPullParser xpp = factory.newPullParser();
            xpp.setInput(getInputStream(url), "UTF_8");
            boolean insideItem = false;
                    // Returns the type of current event: START_TAG, END_TAG, etc..
            int eventType = xpp.getEventType();
            while (eventType != XmlPullParser.END_DOCUMENT) {
                    if (eventType == XmlPullParser.START_TAG) {
                        if (xpp.getName().equalsIgnoreCase("item")) {
                            insideItem = true;
                        } else if (xpp.getName().equalsIgnoreCase("Name")) {
                            if (insideItem)
                                names.add(xpp.nextText()); //extract the headline
                        } else if (xpp.getName().equalsIgnoreCase("url")) {
                            if (insideItem)
                                links.add(xpp.nextText()); //extract the link of article
                        }
                    }else if(eventType==XmlPullParser.END_TAG && xpp.getName().equalsIgnoreCase("item")){
                        insideItem=false;
                    }
                    eventType = xpp.next(); //move to next element
                }
        }catch (MalformedURLException e) {
            e.printStackTrace();
        } catch (XmlPullParserException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        ArrayAdapter<String> adapter = new ArrayAdapter<String>(this, android.R.layout.simple_list_item_1, names);
                setListAdapter(adapter);
 }
    private InputStream getInputStream(URL url) {
        // TODO Auto-generated method stub
        try {
             return url.openConnection().getInputStream();
             } catch (IOException e) {
                   return null;
            }
    }
}
//第二节课或活动
public class Details extends LastActivity{
    LastActivity last=new LastActivity();
    TextView tv;
    TextView url;
    String read;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.details);
        tv=(TextView) findViewById(R.id.text);
        url=(TextView) findViewById(R.id.link);
        Intent intent=getIntent();
            // receiving  data
            String name = intent.getStringExtra("name");
            String path=intent.getStringExtra("links");
            Log.e("Second Screen", name + "." + path);
            tv.setText(name);
            url.setText(path);
    }