How can I disable landscape mode for some of the views in my Android app?
Either in manifest class.
or programmatically
setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
Note : you should call this before setContentView method for your activity in onCreate().
setContentView
onCreate()