Ranter
Join devRant
Do all the things like
++ or -- rants, post your own rants, comment on others' rants and build your customized dev avatar
Sign Up
Pipeless API
From the creators of devRant, Pipeless lets you power real-time personalized recommendations and activity feeds using a simple API
Learn More
Comments
-
Hitman6638y@AnirudhKonduru In the about section you can see the stack they used. Looking at that, i see that the app is developed in Appcelerator using JavaScript, which is then compiled to an android app. Appcelerator has the possibility to turn the screen, so maybe it was on purpose to not implement it!
-
tl;dr probably defined it to stay in portrait mode.
I develop in natively for android and essentially 2 ways to turn off rotation. One is actually in the code that creates the activity(single thread or main list of rants) or in the Manifest, one of the main files that explains details about the application. Usually if I want to keep an activity in portrait I'll use the manifest file to define that I want that activity to stay in portrait mode.
Also, the way android handles orientation movement depends on if you tell it now to handle it or not. Without explicitly saying how to handle it, it tries its best to lay it out how it thinks it should be. However, good android developer will explicitly define how to handle orientation changes. I encountered this problem when I created an IRC application.
Dear dfox,
Thank you for not making your app completely change layouts and screw up scrolling whenever we turn on our sides when reading rants in bed, unlike nearly every mobile web browser out there. We all really appreciate it.
--Random devRanter
undefined