02-07-2009 10:47 AM
I've been looking for a long time now but how does they KeyWordFilter in the native SMS app overlap everything when it's being typed in. I tried making my own keywordfilter class and overwriting paint,tried making my own VerticalFieldManager, tried overwriting listrow, and now I am trying the following but none of it seems to work
_keywordFilterField = new KeywordFilterField(){ public void paint(Graphics g) { super.paint(g); getManager().invalidate(); _keywordFilterField.invalidate(); g.pushContext(10, 10, 100, 300, 100, 100); g.popContext(); }
};
Here's what i'm talking about in the native SMS: http://i193.photobucket.com/albums/z320/Atlus360/o
Right now all it does is add it like a normal screen.add() would. I'd really love some help i've been stuck on this for a long time now.
This is on the 9530 Verizon
02-07-2009 12:33 PM
02-07-2009 12:59 PM
02-07-2009 11:09 PM
02-08-2009 01:57 PM