mike wrote: > following is the layout xml file. > here i used <include> tag. > in that the layout="@layout/player_view" , player_view is another xml > file that contains > a seat with avatar, 2cards and player name and bet amount. > > i need 2 seats like that so i used <include> 2 times and it is > showing in screen fine. > > my problem is how to access the views in the player_view to give > different names to players and to show different cards for each seat.i > didn't find any where how to do that.
Just call findViewById(), no different than anything else. Also, FYI, AbsoluteLayout is deprecated, so you should try to avoid using it. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Online Training: 26-30 April 2010: http://onlc.com -- 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

