Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.70 KB | None | 0 0
  1. ublic void onItemLongClick(View view, int position) {
  2.  
  3. FragmentManager fm = getSupportFragmentManager();
  4. actionOption actionOption = new actionOption();
  5. actionOption.show(fm,"fragment_edit_name");
  6. ToDoModule movie = dbList.get(position);
  7. int y= movie.getId();
  8. Bundle args = new Bundle();
  9. args.putInt("exampleInt", y);
  10. actionOption.setArguments(args);
  11.  
  12. EditOption editOption = new EditOption();
  13.  
  14. ToDoModule bl = dbList.get(position);
  15. int z= movie.getId();
  16. Bundle zs = new Bundle();
  17. zs.putInt("int", y);
  18. editOption.setArguments(zs);
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement