this is my first experience as developer. My app is a simple soundboard and consist on a line of buttons, each of them is associated to a contextmenu to save sounds on SD... Now I'm try to improve the UI with a gridview but I'm finding problems to registerForContextMenu(gridview) The adapter works fine for the click but seems doesn't works on contextmenu. I hope that someone can help me. Here some code
MainActivity
public class MainActivity extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.prova);
GridView gridview = (GridView) findViewById(R.id.GridView1);
gridview.setAdapter(new ButtonAdapter(this));
registerForContextMenu(gridview);
}
@Override
public void onCreateContextMenu(ContextMenu menu, View v,ContextMenuInfo menuInfo) {
super.onCreateContextMenu(menu,v, menuInfo);
menu.setHeaderTitle("Salva:");
menu.add(0, v.getId(), 0, "Suoneria");
for (int n = 0; n < buttons.length; n++){
if(buttons[n].getId() == v.getId()){
soundId = soundArray[n];
}
}
}
My ButtonAdapter
public class ButtonAdapter extends BaseAdapter {
private ArrayList<Button> mButtons = null;
private Context mContext;
public ButtonAdapter(Context c) {
mContext = c;
}
// Total number of things contained within the adapter
public int getCount() {
return ids.length;
}
public Object getItem(int position) {
return (Object) mButtons.get(position);
}
public long getItemId(int position) {
return position;
}
public View getView(int position, View convertView, ViewGroup parent) {
Button btn;
if (convertView == null) {
// if it's not recycled, initialize some attributes
btn = new Button(mContext);
btn.setLayoutParams(new GridView.LayoutParams(200, 85));
btn.setPadding(8, 8, 8, 8);
}
else {
btn = (Button) convertView;
}
btn.setFocusable(false);
btn.setText(ids[position]);
btn.setId(position);
btn.setOnClickListener(new MyOnClickListener(position, mContext));
return btn;
}
// references to my buttons
private String[] ids = {"sound1", "sound2",...};
}
I think is useless to post MyOnClickListener