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 ?
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 ?