I have an app with 3 tabs, on each tab i have 2 dropdowns which i can select.
When i press a button on tab 3 to show me what was selected in the dropdowns on the other 2 tabs, all i get is the first one in the list.
How do you get the selected dropdown from another tab?
I've tried:
final View newFileDialogInflated = View.inflate(this, R.layout.profile_page, null);
//quality
//calc
final Spinner type = (Spinner) this.findViewById(R.id.Type);
editor.putString("Type",String.valueOf(type.getSelectedItem()));
Any suggestions how to get it working?
Supplier of Asset Financial Software
Web based, and pocket pc compatible
b3computing.co.uk
When i press a button on tab 3 to show me what was selected in the dropdowns on the other 2 tabs, all i get is the first one in the list.
How do you get the selected dropdown from another tab?
I've tried:
final View newFileDialogInflated = View.inflate(this, R.layout.profile_page, null);
//quality
//calc
final Spinner type = (Spinner) this.findViewById(R.id.Type);
editor.putString("Type",String.valueOf(type.getSelectedItem()));
Any suggestions how to get it working?
Supplier of Asset Financial Software
Web based, and pocket pc compatible
b3computing.co.uk