I need to create an app for android, where the 2-color text will be displayed on the 2-color background. See picture on the left. Then, the line should be moved with animation and result image should be like on the picture on the right.

I have the following questions:

  1. Should I use some 2d engine to do this? Or, will it be OK to use standard views? How to do it?
  2. How to draw the text like on the pictures?

pic1 --------- pic2

link|improve this question

I can tall you this, this is not easy task at all. But very good beginning could be to use some customized component such as canvas – Lukap Sep 12 '11 at 19:49
Is there any function, which can revert the text color depending on background? – LA_ Sep 13 '11 at 8:34
have you figured out how to implement this? i might have an answer if you didn't – Ludevik Nov 14 '11 at 10:44
@Ludevik, I have not. Will be waiting for your answer then ;) – LA_ Nov 14 '11 at 15:28
feedback

2 Answers

In Anroid graphics API i would use clip path to create clip region. Steps:

  • fill canvas with black color:

black canvas

  • draw your white text on canvas:

enter image description here

enter image description here

  • draw the same text as in step 2 in black on canvas:

enter image description here

link|improve this answer
feedback

This is not complete answer I just giving suggestions. I know one possible solution how can you do the picture on the left and the picture on the right. But The part I cant figured out is the animation. I mean if you want smooth animation between states. If you just want to swap views that is easy, just take a view fliper and that it, but I do not think that you want to achieve that...

One of the things you can do is to set background let say with 320 width and let say 0-160 white and 160-320 black. Then

tv.setText(Html.fromHtml("<font color='black'>black on white</font> <font color='white'>white on black</font>"));

of course you will need to do precise calculation of how many letters will be black and how many white, but that is the concept

link|improve this answer
I think there is more easy solution - I need to draw the text twice - first with white color and secondly with black. But I shouldn't use standard TextViews for this. – LA_ Sep 13 '11 at 16:06
I just suggest you one way to do it, I am sure that there are more precise solutions to do what you want to do, this was the first I came up with – Lukap Sep 13 '11 at 16:18
Did you find some other solution ? – Lukap Sep 16 '11 at 19:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.