[android-developers] Re: Linkify

2016-06-16 Thread Ansh
What about sending attachments with the email ? On Sunday, 31 October 2010 03:25:21 UTC+5:30, Priyank wrote: > > Hi, > > I am stuck at a place when I was using Linkify to create Link an email > id to the Android email app. > > I have a large sentence in a textview which has an email id. On >

[android-developers] Re: Linkify combined with Html.fromHtml

2013-01-26 Thread wnafee
I know this has been a long time ago, but did you ever find an answer to this? On Sunday, July 17, 2011 11:20:21 AM UTC-5, julius wrote: Hi, I have a String with 'a href=...Something/a' tags and some text such as 'www.example.com'. I would like both to be links that can be clicked in a

[android-developers] Re: Linkify combined with Html.fromHtml

2013-01-26 Thread skink
wnafee wrote: I know this has been a long time ago, but did you ever find an answer to this? On Sunday, July 17, 2011 11:20:21 AM UTC-5, julius wrote: Hi, I have a String with 'a href=...Something/a' tags and some text such as 'www.example.com'. I would like both to be links that

[android-developers] Re: Linkify

2010-11-03 Thread Lance Nanek
The value of your href attribute is incorrect. It should start with mailto:;. Adding an intent-filter to your manifest makes no sense. You would only do that if you wanted an activity in your app to get called instead of the email app. The scheme is mailto, not http anyway. On Oct 31, 10:50 pm,

Re: [android-developers] Re: Linkify

2010-10-31 Thread Priyank Maiya
Hi, Thanks for the reply.. I am trying to do what you said. I defined a string: string name= support_requestSupport Request: a href= supp...@unl.com?subject=commentssupp...@unl.com/a/string In my .java code, I created a textview and called the setMovementmethod like this: TextView

[android-developers] Re: Linkify and Context Menu

2010-09-27 Thread jithin syam ms
thanks... I will try on this. On Sep 25, 11:10 am, Ryan Mattison rmattis...@gmail.com wrote: I think I went down this road like 2 years ago and ended up doing something crazy/dumb like using a web view.  Instead of startActivity you could do pop ups and just feed the web view the text.   A

[android-developers] Re: Linkify and Context Menu

2010-09-25 Thread Ryan Mattison
I think I went down this road like 2 years ago and ended up doing something crazy/dumb like using a web view. Instead of startActivity you could do pop ups and just feed the web view the text. A little css might be needed : / If you are stuck this may work for u. Use the Linkify to add tel:

[android-developers] Re: Linkify-ed TextView non-linked text disappears on touch

2010-05-06 Thread westmeadboy
Just tried this using the emulator (SDK 1.6), and the same problem occurs. So it could be some change that has been introduced from 1.6. Note: if no links are created in the text, then the problem does not occur. In other words, clicking on the TextView does not result in the text disappearing.

[android-developers] Re: Linkify-ed TextView non-linked text disappears on touch

2010-05-06 Thread westmeadboy
Just found this thread which describes the problem: http://groups.google.com/group/android-developers/browse_thread/thread/ccb475c855e8785a/f1f80a34fe3ff179 To confirm, the text was not actually disappearing, but being set to black (and appearing to disappear where the background is also black).

[android-developers] Re: Linkify-ed TextView non-linked text disappears on touch

2010-05-04 Thread westmeadboy
I notice this happens on the Nexus One but not on the HTC Hero (EU version). Anyone else experience this? On May 4, 1:36 am, westmeadboy westmead...@yahoo.co.uk wrote: I'm not sure if this is by design but... I have a text view (white text on black background) which is linkified. If at least

[android-developers] Re: Linkify for twitter hashtags

2010-01-11 Thread whozman
Figured it out, used the TransformFilter to replace the # with %23 and that did the trick. On Jan 1, 10:27 pm, whozman alexzivko...@view2gether.com wrote: I got the @s linkifying no problem with @([A-Za-z0-9_]+) like this: Pattern atWordMatcher = Pattern.compile(@([A-Za-z0-9_]+));//(\\s|\\A)