I have a relative layout with textviews ordered in more then one column. When clicked on screen, there is a “popup screen” or “input screen” (have no idea how it is called) in which I define the time “from” and “to”, what is the name of school class etc. It will compute which textviews it needs to merge from that input. Merged textviews have to be like one larger textview. Is it possible to do something like this?
Thanks for the answer in ahead.
Something like this:
https://i.stack.imgur.com/r1o8D.png
I’ve got an idea you could try creating a custom view to draw this instead of using views.
Extend the View class in a new class and override the onDraw method.
Android documentation on custom controls
you
Android: Tutorial on Custom View creation
How to make a custom view similar to above
http://www.droidnova.com/playing-with-graphics-in-android-part-i,147.html
Go through these and then through the code above. Hopefully it should show you how to implement it.