First of all, how to print this View onto the screen without using the LinearLayout object. Can anyone help me on that first....?
i.e, View v= (View) record.getView(this, inflater, content, i) ; // stores the View of the data that i need to print How to print it..? On Fri, May 25, 2012 at 2:23 PM, Arithy M.V <[email protected]> wrote: > Here, > Inflater : is an object of LayoutInflater > content : is of LinearLayout > records : is a List<data> > tag_divider : is the layout file name in xml > i : an integer for printing in offset (not important) > > > On Fri, May 25, 2012 at 10:32 AM, Arithy <[email protected]> wrote: > >> Hi, >> >> I've been working on android coding recently and I'm stuck up at this >> situation. >> >> Here is the code that sets up the View and prints the string that is >> present in the View. >> >> content.addView (record.getView (this,inflator,content,i), i+1) ; >> content.addView(inflater.inflate (R.layout.tag_divider, content, >> false), 2+1) ; >> >> I know that record.getView(this, inflator, content, i); returns the >> required View. Actually, I want the data as a string because I want >> to work on it further. Its not jsut to print it on screen but to use >> it further like chek it with some other string, append it, etc. How >> could I get the string that is present in this View...? Can anyone >> guide me on that? >> >> Arithy. >> >> -- >> 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 > > > > > -- > With Regards, > *Arithy*, > > > -- With Regards, *Arithy.* -- 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

