Change oriention on fly it's possible ?

alan1968

Active Member
Licensed User
Longtime User
Hello
In my project I need to change the orientation on the fly, in pure java I found this solution
@Override
public void onConfigurationChanged(Configuration newConfig)
{
super.onConfigurationChanged(newConfig);
setContentView(R.layout.main);
}

In B4A V1.8 it's possible ?
 
Top