How can I disable landscape mode for some of the views in my Android app?
Add this android:screenOrientation="portrait" in your manifest file where you declare your activity like this
If you want to do using java code try
setRequestedOrientation (ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
before you call setContentView method for your activity in onCreate().
Hope this help and easily understandable for all...