0

我有扩展 BaseAdapter 的简单 ListView。我在每一行都有一个微调器和按钮。如何在 ListView 中找到微调器的位置,以便我必须获取每个微调器的 selectedItem() ?

private class MyCustomAdapter extends BaseAdapter {
private Activity activity;
private String[] estimated, price, image;
private  LayoutInflater inflater=null;
public ViewHolder holder;
public ProductImageLoader imageLoader;
 private ArrayList<String> arraylist4;
SQLiteDatabase db;
View vi;

public MyCustomAdapter(SubMenu subMenu, String[] estimated, String[] price, String[] image) {
// TODO Auto-generated constructor stub
this.activity = subMenu;
this.estimated = estimated;
this.price = price;
this.image = image;
inflater =    (LayoutInflater)getParent().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
imageLoader=new ProductImageLoader(activity.getParent());

}
@Override
public int getCount() {
// TODO Auto-generated method stub
return estimated.length;
}

@Override
public Object getItem(int position) {
// TODO Auto-generated method stub
return position;
}

 @Override
 public long getItemId(int position) {
// TODO Auto-generated method stub
return position;
 }
 public  class ViewHolder{
public TextView text;
public TextView text1;
public ImageView image_view;
public Button button, add_btn;
public Spinner spinner;
}
@Override
 public View getView(final int position, View convertView, ViewGroup parent) {
  // TODO Auto-generated method stub
  vi=convertView;

 if(convertView==null){

    vi = inflater.inflate(R.layout.submenu_items, null);
    holder=new ViewHolder();
    holder.text=(TextView)vi.findViewById(R.id.food_name);
    holder.text1=(TextView)vi.findViewById(R.id.prize);
    holder.image_view=(ImageView)vi.findViewById(R.id.imageview);
    holder.button=(Button)vi.findViewById(R.id.detail_btn);
    holder.add_btn=(Button)vi.findViewById(R.id.addorder_btn);
    holder.spinner=(Spinner)vi.findViewById(R.id.spinner);
    vi.setTag(holder);
  }
 else
    holder=(ViewHolder)vi.getTag();

holder.text.setText(estimated[position]);
holder.text1.setText(price[position]);
holder.image_view.setTag(image[position]);
imageLoader.DisplayImage(image[position], activity, holder.image_view);
holder.button.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// TODO Auto-generated method stub
Bundle bundle = new Bundle();
bundle.putString("url", image[position]);
bundle.putString("description", description[position]);
Log.d("url",""+description[position]);

Intent intent = new Intent(SubMenu.this,FoodDetailPage.class);
intent.putExtras(bundle);
TabGroupActivity parentActivity = (TabGroupActivity)getParent();
parentActivity.startChildActivity("FoodDetailPage", intent);
}

});
holder.add_btn.setOnClickListener(new OnClickListener() {

    @Override
    public void onClick(View v) {
        // TODO Auto-generated method stub
        Log.d("row spinner", ""+holder.spinner.getChildAt(position));
        try {
            db = SQLiteDatabase.openDatabase("data/data/com.android.restaurant1   /Restaurant", null, SQLiteDatabase.CREATE_IF_NECESSARY);
            db.beginTransaction();
            db.execSQL("insert into table1(MenuName, Count, Price)  values('"+estimated[position]+"', '"+holder.spinner.getSelectedItem()+"', '"+price[position]+"')");
            db.setTransactionSuccessful();
            db.endTransaction();
            db.close();
        }
        catch(SQLException e) {

        }
    }
});
return vi;

}

4

3 回答 3

1

在您的自定义适配器类中,尝试在 getView() 方法中实现微调器侦听器并存储到一个整数数组中。

   final int[] positions=new int[2]; //[0] for listitem position, [1]  for spinner postion
        Spinner sp=findViewByID(R.id.spinner);

        sp.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {

            @Override
            public void onItemSelected(AdapterView<?> arg0, View arg1,
                    int arg2, long arg3) {
                // TODO Auto-generated method stub
                positions[0]=listItemSelectedposition;
                positions[1]=arg2;


            }

            @Override
            public void onNothingSelected(AdapterView<?> arg0) {
                // TODO Auto-generated method stub

            }
        });
于 2011-11-05T05:10:37.307 回答
1
Spinner user_type user_type = (Spinner) findViewById(R.id.spinner1);
user_type.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
  public void onItemSelected(AdapterView<?> parent,View view, int pos, long id) {                           
    Log.i("Position ", "is "+pos);
  }

  public void onNothingSelected(AdapterView<?> parent) {
  }
});
于 2011-11-05T05:40:04.160 回答
0

You have to use the below code within the getView method:

int spinnerPosition;

user_type
                .setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
                    public void onItemSelected(AdapterView<?> parent,
                            View view, int pos, long id) {
                            spinnerPosition=pos;
                            String usertype;
                            usertype = parent.getItemAtPosition(spinnerPosition).toString();


                        Log.i("Position ", "is "+spinnerPosition);
                        Log.i("Item ", "is "+usertype);
                    }

                    public void onNothingSelected(AdapterView<?> parent) {
                    }
                });

And then you can use spinnerPosition at this line of code:

Log.d("row spinner", ""+holder.spinner.getChildAt(spinnerPosition));

And other places also.

于 2011-11-05T06:24:26.493 回答