gogu
gogu

Reputation: 633

android linkify in listview

I have this code:

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import org.apache.http.NameValuePair;
import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;
import com.romantic.aacplay.R;
import android.app.ListActivity;
import android.app.ProgressDialog;
import android.graphics.Color;
import android.graphics.drawable.GradientDrawable;
import android.os.AsyncTask;
import android.os.Bundle;
// import android.text.Html;
// import android.text.Html;
import android.text.Html;
import android.util.Log;
import android.view.View;
import android.widget.ListAdapter;
import android.widget.SimpleAdapter;


public class PodCast extends ListActivity {
        private ProgressDialog pDialog;


        JSONParser jParser = new JSONParser();

        ArrayList<HashMap<String, String>> productsList;

        private static String url_all_products = "http://mysite.net/andro/pcast.php";
        private static final String TAG_SUCCESS = "success";
        private static final String TAG_PRODUCTS = "podcast";
        private static final String TAG_LINK = "link";
        private static final String TAG_NAME = "nume";

        JSONArray products = null;

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

             GradientDrawable gd = new GradientDrawable(GradientDrawable.Orientation.TOP_BOTTOM, new int[] {Color.RED,Color.BLACK});
                View title = getWindow().findViewById(android.R.id.title);
                View titleBar = (View) title.getParent();
                titleBar.setBackgroundDrawable(gd);


            productsList = new ArrayList<HashMap<String, String>>();

            new LoadAllProducts().execute();

        }

        class LoadAllProducts extends AsyncTask<String, String, String> {
            @Override
            protected void onPreExecute() {
                super.onPreExecute();
                pDialog = new ProgressDialog(PodCast.this);
                pDialog.setMessage("Se incarca. Asteapta...");
                pDialog.setIndeterminate(false);
                pDialog.setCancelable(false);
                pDialog.show();

            }

            protected String doInBackground(String... args) {

                List<NameValuePair> params = new ArrayList<NameValuePair>();
                JSONObject json = jParser.makeHttpRequest(url_all_products, "GET", params);


                Log.d("Ultimele 10 piese: ", json.toString());

                try {
                    int success = json.getInt(TAG_SUCCESS);

                    if (success == 1) {
                        products = json.getJSONArray(TAG_PRODUCTS);
                        for (int i = 0; i < products.length(); i++) {
                            JSONObject c = products.getJSONObject(i);
                            String link = c.getString(TAG_LINK);
                            String name = c.getString(TAG_NAME);
                            HashMap<String, String> map = new HashMap<String, String>();
                            // String href = String.format("<a href=\"%s\"> %s </a>", link, name);
                            // String cici = Html.fromHtml(href).toString();
                            map.put(TAG_NAME, name);
                            map.put(TAG_LINK, "" + Html.fromHtml(link));
                            // map.put(TAG_LINK, link);
                            productsList.add(map);
                        }
                    } else {

                    }
                } catch (JSONException e) {
                    e.printStackTrace();
                }

                return null;
            }

            protected void onPostExecute(String file_url) {

                pDialog.dismiss();
                runOnUiThread(new Runnable() {
                    public void run() {
                        ListAdapter adapter = new SimpleAdapter(
                                PodCast.this, productsList,
                                R.layout.list_item, new String[] {
                                        TAG_NAME, TAG_LINK },
                                new int[] { R.id.link, R.id.name });

                        setListAdapter(adapter);
                    }
                });

            }

        }

}

Now i'm trying to figure out how can i make the links in listview clickable. I`m trying to linkify a textview that is in found here:

protected void onPostExecute(String file_url) {

                pDialog.dismiss();
                runOnUiThread(new Runnable() {
                    public void run() {
                        ListAdapter adapter = new SimpleAdapter(
                                PodCast.this, productsList,
                                R.layout.list_item, new String[] {
                                        TAG_NAME, TAG_LINK },
                                new int[] { R.id.link, R.id.name });

                        setListAdapter(adapter);
                    }
                });

            }

R.layout.list_item which is a different .xml layout for the listview. So can you guys help me solve this? Thanks in advance!

Upvotes: 1

Views: 842

Answers (3)

90047872j
90047872j

Reputation: 1

I wanted as well to create a linkeable textView on my list adapter so I used:

    Linkify.addLinks(textViewLocationPhone, Linkify.PHONE_NUMBERS);
    textViewLocationPhone.setLinksClickable(true);

and it worked.

Upvotes: 0

user1581740
user1581740

Reputation: 31

I feel instead of using SimpleAdapter,Please extend the BaseAdapter and make the textview you are using as linkify.so it will automatically get click. please refer:

Android dev blog

Upvotes: 2

Aamirkhan
Aamirkhan

Reputation: 5794

put this line to ur textview

android:autoLink="web"

i hope this will solve ur query

Upvotes: 0

Related Questions