I have one of my classe called "Connect" which is within this xmpp connections
but I have a problem in passing this subject, I want to turn in a session,
How I can fix this? is there any method that can pass objects to other activities?
I try :
1 FORM
2 FORM
3 FORM
Always get Null why ?
but I have a problem in passing this subject, I want to turn in a session,
How I can fix this? is there any method that can pass objects to other activities?
I try :
PHP:
Connext connect;
1 FORM
PHP:
Bundle bun = new Bundle();
bun.putSerializable("CON", (Serializable) connect.getConnectionConfiguration());
intent.putExtras(bun);
PHP:
Bundle bun = new Bundle();
bun.putParcelable("connection", (Parcelable) connect);
3 FORM
PHP:
intent.putExtra("connection", connect); // serialize class Connect
Always get Null why ?
