2012-05-29 10 views

Respuesta

21

Say et es su EditText y tv es un objeto TextView. Utilice el siguiente código:


public class MotivationalQuotesActivity extends Activity { 
    /** Called when the activity is first created. */ 

Button next; 
EditText et; 
TextView tv; 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.main); 
    et = (EditText) findViewById(R.id.et); 
    tv = (TextView) findViewById(R.id.tv); 
    tv.setText("The name of our country is Bangladesh. Bangladesh is a land of rivers."); 

    next = (Button) findViewById(R.id.button1); 
    next.setOnClickListener(new OnClickListener() { 

      public void onClick(View v) { 
       // TODO Auto-generated method stub 
       tv.setText("The name of our country is Bangladesh. Bangladesh is a land of rivers."); 
       String ett =et.getText().toString(); 
       String tvt =tv.getText().toString(); 

       int ofe = tvt.indexOf(ett,0); 
       Spannable WordtoSpan = new SpannableString(tv.getText()); 

     for(int ofs=0;ofs<tvt.length() && ofe!=-1;ofs=ofe+1) 
     {  


       ofe = tvt.indexOf(ett,ofs); 
        if(ofe == -1) 
         break; 
        else 
         {      

         WordtoSpan.setSpan(new BackgroundColorSpan(0xFFFFFF00), ofe, ofe+ett.length(),Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); 
         tv.setText(WordtoSpan, TextView.BufferType.SPANNABLE); 
         } 


     } 


      } 
     }); 

    } 

} 

El resultado es:

enter image description here

+0

muchas gracias, que realmente me ayude con mi proyecto .. – Mordiggian

+0

tengo 1 pregunta más, cómo borrar o resetear el punto culminante en la palabra? – Mordiggian

+1

Si desea borrar lo más destacado, puede usar 2 enfoques: ** Primero: ** Establezca el texto sin formato en TextView como 'tv.setText (" El nombre de nuestro país es Bangladesh. Bangladesh es una tierra de ríos. ");' ** Segundo: ** Use el método anterior para resaltar pero use el color del fondo (digamos ** negro ** en este caso) como el color de resaltado como: 'WordtoSpan.setSpan (nuevo BackgroundColorSpan (color) .black), ofe, ofe + ett.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE); ' –

0

Una manera fácil y rápida de resaltar un texto, es utilizar el método cadena de reemplazo. Reemplazar la cadena con el deseo etiqueta de fuente

Spanned strHTML= Html.fromHtml("<center>"+full_string.replaceAll(strSrch,"<font color='yellow'>"+strSrch+"</font>")+"</center><br/>"); 
TextView tv=(TextView) v.findViewById(R.id.txtPager); 
tv.setText(strHTML,TextView.BufferType.SPANNABLE); 
Cuestiones relacionadas