I use a fontawesome-webfont.ttf font file in my assets folder.
my layout file:
<TextView
android:id="@+id/shop_search"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="5"
android:gravity="center"
android:text="@string/fa_search"
android:textColor="@color/gray"
android:textSize="25sp" />
My string file:
<string name="fa_hourglass"></string>
My java file:
itemView = (TextView) itemView.findViewById(R.id.item);
Typeface font = Typeface.createFromAsset(mContext.getAssets(), "fontawesome-webfont.ttf");
itemView .setTypeface(font);