検証用に設定したアニメーションをもとに戻した

This commit is contained in:
r-ca 2024-01-27 15:00:38 +09:00
parent 733371ecbc
commit 75045c3fe3
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -99,7 +99,7 @@ public class MainActivity extends AppCompatActivity implements FragmentNavigatio
Toast.makeText(this, "Scan", Toast.LENGTH_SHORT).show(); Toast.makeText(this, "Scan", Toast.LENGTH_SHORT).show();
Intent intent = new Intent(this.getApplicationContext(), ScannerManagerActivity.class); Intent intent = new Intent(this.getApplicationContext(), ScannerManagerActivity.class);
// startActivity(intent); // startActivity(intent);
startActivity(intent, ActivityOptions.makeCustomAnimation(this, 0, 0).toBundle()); startActivity(intent, ActivityOptions.makeCustomAnimation(this, one.nem.lacerta.shared.ui.R.anim.nav_up_enter_anim, one.nem.lacerta.shared.ui.R.anim.nav_up_exit_anim).toBundle());
}); });
} }