At the moment there is a GridViewActivity, where the toolbar has a " + " button (which adds items to the gridView list).
public boolean onOptionsItemSelected(MenuItem item) { if (item.getItemId() == R.id.addPerson) { addPersonToAdapter(); } return super.onOptionsItemSelected(item); } The question is the following: is it possible to place a given "+" image (or some kind of xml file) at the top of my list, where by clicking on this element my elements are added so that the "+" image always moves to the right?
Found about a similar problem , but not quite open.