Update AutoActivity.java

made the back button for Auto work
This commit is contained in:
NoahLacks 2025-03-14 08:37:36 -04:00 committed by GitHub
parent 5d44ebfb64
commit ae6409ccd3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -147,6 +147,7 @@ public class AutoActivity extends AppCompatActivity {
backButton.setOnLongClickListener((v) -> { backButton.setOnLongClickListener((v) -> {
Intent intent = new Intent(this, startingActivity.class); Intent intent = new Intent(this, startingActivity.class);
startActivity(intent);
return true; return true;
}); });