Home | History | Annotate | Download | only in text
      1 /*
      2  * Copyright (C) 2013 Google Inc.
      3  * Licensed to The Android Open Source Project.
      4  *
      5  * Licensed under the Apache License, Version 2.0 (the "License");
      6  * you may not use this file except in compliance with the License.
      7  * You may obtain a copy of the License at
      8  *
      9  *      http://www.apache.org/licenses/LICENSE-2.0
     10  *
     11  * Unless required by applicable law or agreed to in writing, software
     12  * distributed under the License is distributed on an "AS IS" BASIS,
     13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     14  * See the License for the specific language governing permissions and
     15  * limitations under the License.
     16  */
     17 
     18 package com.android.mail.text;
     19 
     20 import android.text.TextPaint;
     21 import android.text.style.URLSpan;
     22 import android.view.View;
     23 
     24 import com.android.mail.compose.ComposeActivity;
     25 import com.android.mail.providers.Account;
     26 
     27 public class EmailAddressSpan extends URLSpan {
     28 
     29     private final Account mAccount;
     30     private final String mEmailAddress;
     31 
     32     public EmailAddressSpan(Account account, String emailAddress) {
     33         super("mailto:" + emailAddress);
     34         mAccount = account;
     35         mEmailAddress = emailAddress;
     36     }
     37 
     38     @Override
     39     public void onClick(View view) {
     40         ComposeActivity.composeToAddress(view.getContext(), mAccount, mEmailAddress);
     41     }
     42 
     43     /**
     44      * Makes the text in the link color and not underlined.
     45      */
     46     @Override
     47     public void updateDrawState(TextPaint ds) {
     48         ds.setColor(ds.linkColor);
     49         ds.setUnderlineText(false);
     50     }
     51 }
     52