I want to make a simple login and register app, so the user can create an account. (name, username, password) I use WAMP and a MYSQL database where I store the accounts.
I don't have specific problem's solution. But I had similar problem. Anyone who has problem like this please make sure you have below code.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.);
by using intelligence you might have choose below code:
@Override
public void onCreate(Bundle savedInstanceState, PersistableBundle persistentState) {
super.onCreate(savedInstanceState, persistentState);
setContentView(R.layout.);
}
This worked for me
For more info on PersistentState
Happy coding :)