[android-developers] Re: edittext text with html formatting

2010-02-16 Thread social hub
do u guys see my email it seems like its not getting through the group On Tue, Feb 16, 2010 at 11:02 AM, social hub shubem...@gmail.com wrote: I like to place text in editext with link to say one of the apps say navigation and I also want color part of the text in blue some in white. Are

Re: [android-developers] Re: edittext text with html formatting

2010-02-16 Thread Frank Weiss
We see it. Since this is a volunteer mail list, you may not get an answer for hours or days. Chances are if the answer is plainly in the docs, no one may reply anyway... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: edittext text with html formatting

2010-02-16 Thread Diego Torres Milano
This might be what you need: http://developer.android.com/intl/de/reference/android/text/util/Linkify.html On Feb 16, 6:31 pm, Frank Weiss fewe...@gmail.com wrote: We see it. Since this is a volunteer mail list, you may not get an answer for hours or days. Chances are if the answer is plainly

Re: [android-developers] Re: edittext text with html formatting

2010-02-16 Thread social hub
Thanks I did look at it What I like is basically as below I just finished reading book via RSS As above the first part of text is with different color and rest of the text color is in blue also via RSS is link to an internal application say RSS so in this case it will launch the intent say

Re: [android-developers] Re: edittext text with html formatting

2010-02-16 Thread social hub
I did look at it What I like is basically as below I just finished reading book via RSS As above the first part of text is with different color and rest of the text color is in blue also via RSS is link to an internal application say RSS so in this case it will launch the intent say RSS:// is

Re: [android-developers] Re: edittext text with html formatting

2010-02-16 Thread social hub
For those of us who are looking for a solutiion. c is the context EditText et=new EditText(c); et.setId(2); et.setLayoutParams(new LayoutParams(300,LayoutParams.WRAP_CONTENT)); //et.setEnabled(false); et.setFocusable(false); et.setMaxHeight(100);