how i can stop the restarting or recalling of on create() on screen orientation ,i want to stop the recreation of activity on screen orientation. thanks in advance please te
Add
android:orientation="vertical"
or
android:orientation="horizontal"
to your layout in mainwindow.xml
.
Example:::
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
No need to add anything in Activity class.
Hope this may help you