New answers tagged orientation
0
I figured out the best way to do this is to check the screen size on the device and base a boolean conditional to device on which axis to use. This is tested and working great.
// Check the screen layout to determine if the device is a tablet.
public boolean isTablet(Context context) {
boolean xlarge = ...
1
I don't know about the rotation part but for the mapping input to rotation you can do the following:
(this doesn't go in code)
add 32768 to your input getting a value 0-65535
from here you can get your multiplier which is 90/65535 = 0.00137
then to get your rotation distance you can simply multiply your input by your multiplier
(this goes in code)
...
Top 50 recent answers are included