How to set both portrait and landscape in single App - android

I have a small doubt, While developing an Android App whose user interface can be used in both portrait and landscape modes. How it is possible to achieve this? Can someone explain briefly?

To achieve this you need to create two different xml files with same name for portrait and landscape and put it in respective folders.
MyProject/
res/
layout/ # default (portrait)
main.xml
layout-land/ # landscape
main.xml

Create 2 xml(GUI) for landscape and portrait. For portrait res/layout And For Landscape res/layout-land . For best ref debv blog Click

You should have layouts for both landscape and portrait.
res/layout/main.xml
res/layout-land/main.xml
http://developer.android.com/guide/topics/resources/providing-resources.html#BestMatch

Related

Layout landscape mode and Categories of layout folders

I created following layout folders.
res/layout-sw320dp
res/layout-sw480dp
res/layout-sw600dp
res/layout-sw720dp
It is ok, layout from corresponding smallest width in dp folder are triggered.
Is it sufficient to create these four folders and our app will looks fine on any density screen or any size screen ? Plz explain this in some detail.
To create layout for landscape mode. what can i do with this ?
what is the use of multi port ui using fragments ? Is it used for landscape and port-rate layout in one xml file ?
By default, the layouts in /res/layout are applied to both portrait and landscape device screeens.
For example you have main.xml
/res/layout/main.xml
you just need to add a new folder /res/layout-land, copy main.xml into it and make the needed adjustments, and so on for all of your layout files.
You just need to have same files for land and portrait but with different folders and of course with different modifications.
Hope this to help!

Change in layout with change in orientation

Hi is it possible that in my android application buttons which are there in vertical orienatation change to tabs in horizontal orientation . So they can fit better for tablets ?
one way is to create 2 folders called layout-land and layout-port, write 2 different xml's with same name and put them in layout-land and layout-port
for example if you have a home.xml
If you put home.xml in layout-port folder, when your device is in portrait orientation it will use the file: layout-port/home.xml.
If you put home.xml in layout-land folder, when your device in landscape orientation it will use the file: layout-land/home.xml.
You have to create separate XML files for portrait and landscape modes and place it in different directories. The device will automatically select the right one. You can use the following directory structure
res/layout/my_layout.xml
res/layout-land/my_layout.xml
For more details read this doc.
Yes, it's definitely possible.
Have you check this one? Basically it's using the Resources in your Android project. You can create the following folders:
res/layout/ //portrait
res/layout-land/ //landscape
Have a layout with the same name but different content depending on what you want.
for 7 inch tablet:-make a new folder in res/layout-sw600dp-port for portrait mode
and res/layout-sw600dp-land for landscape mode
for 10 inch tablet:-make a new folder in res/layout-sw720dp-port for portrait mode
and res/layout-sw720dp-land for landscape mode
for phone layout upto 5 inch screen,just design your screen in layout folder
hope this will help you
!!Happy Coding!!

Android : orientation issue

Issue !!!
I need to develop an application for tablet (v3.1) in both portrait and landscape orientation.
I have placed the resources:-
For Portrait - Images in "drawable" and Layouts in "layout"
For Landscape - Images in "drawable-large" and Layouts in "layout-large"
Issue is that the landscape layouts are not picking the right images.
Can someone please help?
1.Create two main.xml files for layout in both case: landscape and portrait.
2.Put those two main.xml in resources according to its type:
/res/layout-land/main.xml
/res/layout-port/main.xml
Just build and try your application GUI in runtime.
or another example...
create only "layout-land" folder and copy paste your xml file.
/res/layout/main.xml
/res/layout-land/main.xml
layout-large is for devices with large screens, and also we have for example layout-small. the folder you need is layout-land, that the "land" part stands for landscape.
I think your layout folder should be renamed as layout-large-land or simply layout-land
The below snap is from Supporting Multiple Screens document.

Change elements orientation from portrait to landscape mode

i want to have two buttons with vertical orientation when the device is in portrait mode,and in horizontal orientation when it is in landscape.How will i get it with only an .xml file?May i use something like "styles.xml" and say that if i have portrait do this and if i have landscape do the other one?Thanks
The layouts in /res/layout are applied to both portrait and landscape.
To use a different layout in landscape, create a folder /res/layout-land and create another xml file here with the same name. Android will automatically choose the layout corresponding to the current screen orientation.
EDIT :
If you cannot create a second folder or are concerned about performances, then you can override the onConfigurationChanged() method, as explained here.

How do I specify different layouts for portrait and landscape orientations?

I've seen references to being able to specify two separate layout xml files for an activity, one for Portrait and one for Landscape. I've not been to find any information on how to do that though. How do I specify for each activity which xml file is it's portrait layout and which is the Landscape layout?
Is it also possible to specify different layouts for different screen sizes? If so, how is this done?
Create a layout-land directory and put the landscape version of your layout XML file in that directory.
You just have to put it under separate folders with different names depending on orientation and resolution, the device will automatically select the right one for its screen settings
More info here:
http://developer.android.com/guide/practices/screens_support.html
under "Resource directory qualifiers for screen size and density"
For Mouse lovers! I say right click on resources folder and Add new resource file, and from Available qualifiers select the orientation :
But still you can do it manually by say, adding the sub-folder "layout-land" to
"Your-Project-Directory\app\src\main\res"
since then any layout.xml file under this sub-folder will only work for landscape mode automatically.
Use "layout-port" for portrait mode.
Just a reminder:
Remove orientation from android:configChanges attribute for the activity in your manifest xml file if you defined it:
android:configChanges="orientation|screenLayout|screenSize"
Fastest way for Android Studio 3.x.x and Android Studio 4.x.x
1.Go to the design tab of the activity layout
2.At the top you should press on the orientation for preview button, there is a option to create a landscape layout (check image), a new folder will be created as your xml layout file for that particular orientation
Update: On newer versions the options have been moved to the context menu of the .xml filename button. (Big thanks to Oliver Hoffmann for pointing that out).
I think the easiest way in the latest Android versions is by going to Design mode of an XML (not Text).
Then from the menu, select option - Create Landscape Variation.
This will create a landscape xml without any hassle in a few seconds. The latest Android Studio version allows you to create a landscape view right away.
I hope this works for you.
Create a new directory layout-land, then create xml file with same name in layout-land as it was layout directory and align there your content for Landscape mode.
Note that id of content in both xml is same.
The last line below is an example for applying two quantifiers: landscape and smallest width(600dp) screen. Update 600dp with the ones you need.
res/layout/main_activity.xml # For handsets
res/layout-land/main_activity.xml # For handsets in landscape
res/layout-sw600dp/main_activity.xml # For 7” tablets
res/layout-sw600dp-land/main_activity.xml # For 7” tablets in landscape
The above applies to dimens as well
res/values/dimens.xml # For handsets
res/values-land/dimens.xml # For handsets in landscape
res/values-sw600dp/dimens.xml # For 7” tablets
res/values-sw600dp-land/dimens.xml # For 7” tablets in landscape
A useful device metrics: https://material.io/tools/devices/
Or use this:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:scrollbars="vertical"
android:layout_height="wrap_content"
android:layout_width="fill_parent">
<LinearLayout android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<!-- Add your UI elements inside the inner most linear layout -->
</LinearLayout>
</ScrollView>
Right click res folder,
New -> Android Resource File
in Available qualifiers, select Orientation,
add to Chosen qualifier
in Screen orientation, select Landscape
Press OK
Using Android Studio 3.4.1, it no longer creates layout-land folder. It will create a folder and put two layout files together.
In Android Studio Chipmunk, the options you are looking for are here.
For landscape, the option is "Create Landscape Qualifier" in the XML name drop-down.
For different screen sizes, the option is "Create Tablet Qualifier"
these have been moved from previous Android Studio versions.
Source: https://stackoverflow.com/a/74047314/3718756

Categories

Resources