> You cannot pass a Button via an Intent. You're right. I only pass the height, width and text of the button I customized in Activity A.
> Activity B cannot modify the UI of Activity A. Activity B cannot safely > reuse the widgets of Activity A. I don't want to modify the UI of Activity A. Activity B has its own UI or rather Activity B's Ui is made of those buttons. Therefore I want to move and show the buttons on Activity B. Maybe I schould post some more code for clarification ? On 8 Feb., 14:14, "Mark Murphy" <[email protected]> wrote: > > 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

