In my app i want to show facebook updates. I used a textview to do the same with marquee limit 2. The problem is when the orientation changes the text starts scroll from the beginning. How can i fix this issue?
Thanks in advance.
In my app i want to show facebook updates. I used a textview to do the same with marquee limit 2. The problem is when the orientation changes the text starts scroll from the beginning. How can i fix this issue?
Thanks in advance.
Just add the following code in ur android manifest(in the activity) so that the orientation changes wont affect ur activity.
android:configChanges="orientation|keyboardHidden"
android:screenOrientation="unspecified"