Android Question What view will use to file a report on the screen?

vecino

Well-Known Member
Licensed User
Longtime User
Hello, I have to file a report on the screen, and then the user can print it if he wants.
The problem is that I can not find a view that presents something decently attractive. With ListView leaves striped between lines, with an edittext is not presentable, etc.
Is there any view that I can use for this task?
Thanks.
 

DonManfred

Expert
Licensed User
Longtime User
If you want to Print the result then the best you can do is to create a PDF and print this PDF.
 
Upvote 0

vecino

Well-Known Member
Licensed User
Longtime User
Hello, I had thought of that option, but I need to separate the presentation of print because they are listed/reports in classic needle printers.
 
Upvote 0

ilan

Expert
Licensed User
Longtime User
Is there no view as the "RichEdit" or similar type?
Thanks.

you can use CLV (Custom List View) and then use the ".AddTextItem" method.
this will add your text nicely inside a big Scrollview and do the formatting automatically.

or you can use a scroll view and add a label to it with the height depending on the length of the string.
the first option is the simpler one.
 
Upvote 0

vecino

Well-Known Member
Licensed User
Longtime User
Thank you, friends, I'm going to try all those options.
I already have to choose :)
 
Upvote 0
Top