I got a question about Android display activity in horizontal direction, Here is my code in AndroidMainfest.xml:
<activity
android:name="com.runmaf.paodong.activity_new.ResultChartDataActivity"
android:configChanges="keyboardHidden|orientation|screenSize"
android:screenOrientation="landscape">
</activity>
and in most cases the activity display in horizontal direction: enter image description here
but sometimes the activity display in the vertical direction like here: enter image description here
And I also try to add the code under here into Activity's onCreate
method, but it will display in vertical direction somtimes:
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
And I also close the phone's Automatic rotation function
!
I don't know what is it happen? need you help!