ylliX - Online Advertising Network

Are cosmetics poisoning our water supply? Episode 154

Should your cosmetics be biodegradable? Fabi asks about biodegradable products… I have an outdoor shower and it drains into the ground and everyone tells me I have to have biodegradable shampoo, conditioner, and body wash for the ground. Can you explain biodegradable products? It’s really hard to find them. What they’re all about and why […]

A better way to handle links in TextView

There are two ways of “linkifying” URLs in a TextView. First, as an XML attribute: <TextView … android:autoLink=”phone|web” /> and second, programmatically: TextView textView = (TextView) findViewById(R.id.text1); Linkify.addLinks(textView, Linkify.PHONE_NUMBERS | LINKIFY.WEB_URLS); In both the cases, the framework internally registers a LinkMovementMethod on the TextView that handles dispatching a ACTION_VIEW Intent when any link is clicked. This is why phone-numbers open in a dialer when clicked, […]