I need to make a TextView Clickeable, but the text of this is not always the same so I can not hardcode it in the xml, so I need to assign it dynamically, I do it this way:
aux = (TextView) findViewById(R.id.tvPagWeb);
aux.setText(c.getString(0)); //Cursor c saca la pag web de una base de datos
aux.setClickable(true);
But the text is gray and you can not click it.