> There are two Activities (Activity A and B). At Activity A I customize > a button and pass it on Activity B via an intent.
You cannot pass a Button via an Intent. > On Activity B I move > the button somewhere on the screen. Activity B cannot modify the UI of Activity A. Activity B cannot safely reuse the widgets of Activity A. > Any suggestion and hints how this could be solved would be > appreciated ! Give Activity B its own widgets, independent of those from Activity A, positioned where they are supposed to be from the outset. -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer Books: http://commonsware.com/books.html -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

