Pregunta

¿Cómo obtengo una cadena de mi cursor en mi llamada Putextra en un OnItemClick para una vista de lista? Necesito tomar la cadena de mi columna DB llamada 'Gotourl' en:

 i.putExtra("Url", ???). 

... de mi OnitemClick en la actividad. El código de muestra sería útil para el aprendizaje. Gracias !!

Mi actividad tiene:

public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    requestWindowFeature(Window.FEATURE_NO_TITLE);
    setContentView(R.layout.list_view2);

    final ListView lv = getListView();

    activityTitle = (TextView) findViewById(R.id.titleBarTitle);
    activityTitle.setText("ADVISORY CIRCULATORS");

    displayResultList();

    lv.setTextFilterEnabled(true);
    lv.setOnItemClickListener(new OnItemClickListener() {
        // @Override
        public void onItemClick(AdapterView<?> a, View v, int position,long id) 
        {
            Toast.makeText(List_AC.this, "Clicked!", Toast.LENGTH_LONG).show();
            Object o = lv.getItemAtPosition(position);
            Adapter_AC fullObject = (Adapter_AC)o;
            Intent i = new Intent(List_AC.this, DocView.class);
            //i.putExtra("url", Adapter_AC.gotoURL);
            startActivity(i);
        }
    });
}

private void displayResultList() {

    if (android.os.Environment.getExternalStorageState().equals(
            android.os.Environment.MEDIA_MOUNTED)) {
        extStorageDirectory = Environment.getExternalStorageDirectory()
                .toString();

        File dbfile = new File(extStorageDirectory
                + "/XXX/XXX/dB/XXX.db");

        SQLiteDatabase db = SQLiteDatabase.openOrCreateDatabase(dbfile,
                null);

        Cursor databaseCursor = db.rawQuery(
                "SELECT * FROM AC_list ORDER BY `label` ASC", null);

        Adapter_AC databaseListAdapter = new Adapter_AC(this,
                R.layout.list_item, databaseCursor, new String[] { "label",
                        "title", "description" }, new int[] { R.id.label,
                        R.id.listTitle, R.id.caption });

        databaseListAdapter.notifyDataSetChanged();
        this.setListAdapter(databaseListAdapter);

    } else if (android.os.Environment.getExternalStorageState().equals(
            android.os.Environment.MEDIA_UNMOUNTED)) {
        Log.i("tag", "SDCard is NOT writable/mounted");
        Alerts.sdCardMissing(this);
    }
}
}

Y mi adaptador:

public class Adapter_AC extends SimpleCursorAdapter {

private Cursor dataCursor;
private LayoutInflater mInflater;

public Adapter_AC(Context context, int layout, Cursor dataCursor,
        String[] from, int[] to) {
    super(context, layout, dataCursor, from, to);
    this.dataCursor = dataCursor;
    mInflater = LayoutInflater.from(context);
}

public View getView(int position, View convertView, ViewGroup parent) {

    ViewHolder holder;

    if (convertView == null) {
        convertView = mInflater.inflate(R.layout.list_item, null);

        holder = new ViewHolder();
        holder.text1 = (TextView) convertView.findViewById(R.id.label);
        holder.text2 = (TextView) convertView.findViewById(R.id.listTitle);
        holder.text3 = (TextView) convertView.findViewById(R.id.caption);

        convertView.setTag(holder);
    } else {
        holder = (ViewHolder) convertView.getTag();
    }

    dataCursor.moveToPosition(position);

    int label_index = dataCursor.getColumnIndex("label");
    String label = dataCursor.getString(label_index);

    int title_index = dataCursor.getColumnIndex("title");
    String title = dataCursor.getString(title_index);

    int description_index = dataCursor.getColumnIndex("description");
    String description = dataCursor.getString(description_index);

    int goto_index = dataCursor.getColumnIndex("gotoURL");
    String gotoURL = dataCursor.getString(goto_index);

    holder.text1.setText(label);
    holder.text2.setText(title);
    holder.text3.setText(description);

    return convertView;
}

static class ViewHolder {
    TextView text1;
    TextView text2;
    TextView text3;
}
} 
¿Fue útil?

Solución

Puedes usar el CursorAdapter getItem() Método para obtener un cursor apuntando al ID actual. Al igual que:

...
Cursor cursor = adapter.getItem(id);
i.putExtra("url", cursor.getString(cursor.getColumnIndex("gotoURL")));
...

Tenga en cuenta que sospecho que deberá incluir esa columna en su proyección, como así:

    Adapter_AC databaseListAdapter = new Adapter_AC(this,
            R.layout.list_item, databaseCursor, new String[] { "label",
                    "title", "description", "gotoURL" }, new int[] { R.id.label,
                    R.id.listTitle, R.id.caption, R.id.dummy });

Y cree un campo invisible ficticio (ver.gone) para que los datos se extraan en el cursor.

Otros consejos

Puede intentar usar el campo 'Etiqueta' en ListView: Configure el valor correcto al crearlo y leerlo para obtener el valor correcto al hacer clic ...

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top