如何使用自定义适配器在我的列表视图中获取itemid

时间:2012-11-16 16:23:22

标签: android custom-adapter

我为列表视图实现了一个自定义适配器,其中包含复选框和文本项。我可以通过我的重写参数获得位置。但如何获取我的列表行的ID?

以下是自定义适配器的代码 -

@Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View rowView = convertView;
        if (rowView == null) {
            LayoutInflater inflater = context.getLayoutInflater();
            rowView = inflater.inflate(R.layout.reminder_row, null);
            ViewHolder viewHolder = new ViewHolder();
            viewHolder.text = (TextView) rowView.findViewById(R.id.reminderRowTextId);
            viewHolder.reminderCheckBox = (CheckBox) rowView.findViewById(R.id.CheckBoxId);
            rowView.setTag(viewHolder);
        }

        final int pos = position;
        final ViewHolder holder = (ViewHolder) rowView.getTag();
        int idRow = holder.text.getId();
        Log.i(TAG, "id of item selected-->" + idRow); <<<<<<------- IT IS GIVING SOME VALUE LIKE 2030771-------->>>
        String s = names[position];
        holder.text.setText(s);

        holder.reminderCheckBox.setOnClickListener(new OnClickListener() {
            @Override
            public void onClick(View v) {
                if (holder.reminderCheckBox.isChecked()) {
                    Toast.makeText(getContext(), "pos-->chkd" + pos, Toast.LENGTH_SHORT).show();
                    long longPos = (long)pos;
                    dbHelper.completeTask(longPos + 1);

                } else {
                    Toast.makeText(getContext(), "pos-->un--chkd" + pos, Toast.LENGTH_SHORT).show();
                }
            }
        });

        holder.text.setOnClickListener(new OnClickListener() {

            @Override
            public void onClick(View v) {
                Toast.makeText(getContext(), "TEXT CLICKED" + pos , Toast.LENGTH_SHORT).show();

                Intent intent = new Intent(context,ReminderModificationActivity.class);
                long longPos = (long)pos;
                intent.putExtra(TasksDBAdapter.KEY_ROWID, longPos + 1);
                Log.i(TAG, "row clickd --> " + longPos);
                ((Activity) context).startActivityForResult(intent, ACTIVITY_EDIT);
            }
        });
        return rowView;
    }

编辑1.1

public static final String KEY_TITLE = "title";                  
    public static final String KEY_BODY = "body";
    public static final String KEY_DATE_TIME = "reminder_date_time"; 
    public static final String KEY_ROWID = "_id";                
    public static final String KEY_IS_COMPLETE = "is_complete";
    private static final String TAG = "TasksDBAdapter";

private static final String DATABASE_CREATE =                        
           "create table " + DATABASE_TABLE + " ("
                   + KEY_ROWID + " integer primary key autoincrement, "
                   + KEY_IS_COMPLETE + " boolean default 'false', "
                   + KEY_TITLE + " text not null, " 
                   + KEY_BODY + " text , " 
                   + KEY_DATE_TIME + " text);"; 

请看一下标记的行。任何人都可以帮助我如何获得身份证。请详细说明我在学习android。 提前致谢, 射线

1 个答案:

答案 0 :(得分:1)

您在getId()上呼叫TextViewaccording to the docs返回与android:id属性相关联的值。此值是自动生成的,可能与R.id.reminderRowTextId相同。

基本上,您实际上并未在ViewHolder课程中设置有意义的ID。只需添加另一个成员变量,并存储您需要的任何内容。

详细说明,适配器用于描述支持列表/数组的大小,并为每个元素提供视图。要正确执行此操作,请实施getView()getItem()

getItem()占据一个位置,这是getView()的参数。将position传递给getItem(),这将从SQLite中提供您的商品。获取该对象的ID,并在ViewHolder中设置变量。