you have to save the necessary data as part of the bundle in the
method, onSaveInstanceState and onCreate(bundle), you should if there
is any data in the bundle. if there is get the data from the bundle
and use that data.

-Ravi

On Feb 18, 1:29 pm, sid <wakeupsi...@gmail.com> wrote:
> Hi All,
>
> For changing from portrait to landscape mode i have done some changes
> in manifest.xml and included some code in test.java file
>
> In manifest.xml i have included <activity_name
> android:configChanges="orientation"/>
>
> i entered some data in portrait mode.
> but when i rotate my mobile from portrait to landscape the control
> goes to onConfigurationChanged() method.
>
> public void onConfigurationChanged(Configuration newConfig)
> {
>         super.onConfigurationChanged(newConfig);
>         setContentView(R.layout.screen1_landscape);
>
> }
>
> in the above method im displaying one more new screen..
> here is the problem that the data entered in portrait mode is not
> retrieving in landscape mode..
>
> Please let me know where am going wrong???

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to