public View getView(int position, View convertView, ViewGroup parent) { View vi = convertView; if (convertView == null) vi = inflater.inflate(R.layout.item, null); TextView text = (TextView) vi.findViewById(R.id.message); String messsage = "
Social networking sites across the world are all thumbs up for this new song ‘Kolaveri Di’ sung\"
"; org.jsoup.nodes.Document document = Jsoup.parse(messsage); Elements elements = document.select("div.description"); text.setText("" + elements.text()); TextView name = (TextView) vi.findViewById(R.id.name); String nameurl = "
Raghav Rajagopalan
"; Document docu = Jsoup.parse(nameurl); Elements element = docu.select("div.actorDescription"); name.setText("" + element.text()); ImageView image = (ImageView) vi.findViewById(R.id.image); // text.setText("item " + position); imageLoader.DisplayImage(data[position], image); return vi; }