code>

  1. ErickAsas

    Android Code Snippet Reversing Screen Orientation Using JavaObject

    If your activity uses either landscape or portrait orientation, and you want to reverse either orientation, this code snippet will enable you to do so. #If JAVA import android.content.pm.ActivityInfo; public void changeScreenOrientation(int orientation) { switch (orientation) { case...
Top