How can I disable landscape mode for some of the views in my Android app?
You can force your particular activity to always remain in portrait mode by writing this in your manifest.xml
You can also force your activity to remain in postrait mode by writing following line in your activity's onCreate() method
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.your_layout);
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_PORTRAIT);
}