The orientation of the screen, i.e. landscape (wider than tall) or portrait (taller than wide)
How can I disable landscape mode for some of the views in my Android app?
android android-manifest android-orientationI am using the Android VNC viewer on my HTC G1. But for some reason, that application is always in …
android landscape android-orientationI have an application that I just would like to use in portrait mode, so I have defined android:screenOrientation="…
android android-activity android-orientationHow to fix layout orientation to portrait and do not allow changing from portrait to landscape during run time?
android android-orientationpublic class MainActivity extends Activity implements MainMenuFragment.OnMainMenuItemSelectedListener { @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.…
android android-fragments android-orientationMy main activity has some code that makes some database changes that should not be interrupted. I'm doing the heavy …
android screen-orientation android-orientationI download some data from internet in background thread (I use AsyncTask) and display a progress dialog while downloading. Orientation …
android orientation android-orientationIn my app I have TextView and EditText. Both have data in it. When the screen orientation changes the data …
android android-layout android-orientation onconfigurationchangedInside my fragment I'm setting my GridLayout in the following way: mRecycler.setLayoutManager(new GridLayoutManager(rootView.getContext(), 2)); So, I just …
android android-orientation android-gridlayout android-recyclerviewI'm trying to replicate the functionality of the latest YouTube app in the Android marketplace. When watching a video there's …
android android-orientation android-videoview