Reputation: 2139
I have simple ListView that extends BaseAdapter. I have a spinner and button in each row. How to find the position of the spinner in the ListView so that i have to get each spinner's 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;
}
Upvotes: 0
Views: 2547
Reputation: 3025
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) {
}
});
Upvotes: 1
Reputation: 3025
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.
Upvotes: 0
Reputation: 5740
In your custom adapter class ,try to implement spinner listener in getView() method and stores into one integer array.
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
}
});
Upvotes: 1