Reputation: 6406
Reading through Android's documentation for android:configChanges
, I find:
"touchscreen" The touchscreen has changed. (This should never normally happen.)
"navigation" The navigation type (trackball/dpad) has changed. (This should never normally happen.)
Umm.. OK. So what does 'normally' mean here? Does it mean it does happen at times? Could someone give an example as to when this would trigger?
Upvotes: 1
Views: 1290
Reputation: 56
For navigation
it will be triggered when you plug in certain wireless mouse/keyboard. Normally in Android, no one plugs a mouse in, which changes navigation
from touch to mouse. Thus, it should not usually happen.
Upvotes: 0
Reputation: 18846
I'm sure @Rafael T is right. It all can be attached via USB. Or maybe in case of emergency it can be replaced "on a fly" by device repairer (with opened case and turned on device..) At least that's how I imagine
"(This should never normally happen.)"
Upvotes: 0