Small improvements

This commit is contained in:
M66B
2018-12-04 11:40:15 +01:00
parent 9c4de134c9
commit e5ee83d544
4 changed files with 18 additions and 16 deletions

View File

@@ -213,11 +213,8 @@ public class FragmentCompose extends FragmentEx {
ivIdentityAdd.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Bundle args = new Bundle();
args.putLong("id", -1);
FragmentIdentity fragment = new FragmentIdentity();
fragment.setArguments(args);
fragment.setArguments(new Bundle());
FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.content_frame, fragment).addToBackStack("identity");