working login method
This commit is contained in:
parent
8cb3a5248b
commit
d4f7160dc4
2 changed files with 11 additions and 0 deletions
|
@ -144,6 +144,7 @@ public class MainActivity extends AppCompatActivity {
|
|||
private void mainScreen (String username) {
|
||||
|
||||
Intent intent = new Intent(this, MainScreen.class);
|
||||
intent.putExtra("username", username);
|
||||
startActivity(intent);
|
||||
|
||||
}
|
||||
|
|
|
@ -2,13 +2,23 @@ package asgardius.page.r3forumtest;
|
|||
|
||||
import androidx.appcompat.app.AppCompatActivity;
|
||||
|
||||
import android.content.Intent;
|
||||
import android.os.Bundle;
|
||||
|
||||
public class MainScreen extends AppCompatActivity {
|
||||
String username;
|
||||
|
||||
@Override
|
||||
protected void onCreate(Bundle savedInstanceState) {
|
||||
super.onCreate(savedInstanceState);
|
||||
setContentView(R.layout.activity_main_screen);
|
||||
username = getIntent().getStringExtra("username");
|
||||
}
|
||||
|
||||
public void onBackPressed(){
|
||||
Intent a = new Intent(Intent.ACTION_MAIN);
|
||||
a.addCategory(Intent.CATEGORY_HOME);
|
||||
a.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||
startActivity(a);
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue