Which is more correct? This:
@Override protected void onSaveInstanceState(Bundle outState) { super.onSaveInstanceState(outState); outState.putLong(ID
So long as your keys do not collide (e.g., ID being the same as something Android uses internally), the two are identical.
ID