7-enero-2014
admin

Añadir tipos de letra a las aplicaciones Android

Paso 1/ Poner en el directorio Assets/fuente la fuente deseada. En este caso BA-Wet_Paint.otf.
Nota: En esta página hay numerosos tipos de fuentes gratuitos.

Paso 2/ Creamos por ejemeplo un TextView tal que así:

< TextView  
	android:layout_width="fill_parent" 
	android:layout_height="wrap_content" 
	android:id="@+id/texto" / >

Paso 3/ Por último podemos asignarle por código el tipo de letra:

TextView text = (TextView) mView.findViewById(R.id.texto);
Typeface font = Typeface.createFromAsset(context.getAssets(), 
                                           "fuente/BA-Wet_Paint.otf"); 
text.setTypeface(font);

//Si, además, se quiere poner en negrita
text.setTypeface(text.getTypeface(), Typeface.BOLD);

Comentarios cerrados.

Categorias

Linkedin