Android - Custom font - Viết chữ thư pháp trên Android Studio
Bước 1: Tạo resource
Đầu tiên tải font về để sử dụng:
http://fontchu.com/font/categories/VNI/VNI-Thuphap1.ttf
Trong thư mục của project tìm đến app-->src--> main, trong main ta tạo một thư mục tên assets. Trong assets tạo thêm một thư mục fonts, copy font vào thư mục fonts
Bước 2: Sử dụng font trong activity
Typeface custom_font = Typeface.createFromAsset(getAssets(), "fonts/your_font_name.ttf");
tv.setTypeface(custom_font );
http://stackoverflow.com/questions/27588965/how-to-use-custom-font-in-android-studio
Đầu tiên tải font về để sử dụng:
http://fontchu.com/font/categories/VNI/VNI-Thuphap1.ttf
Trong thư mục của project tìm đến app-->src--> main, trong main ta tạo một thư mục tên assets. Trong assets tạo thêm một thư mục fonts, copy font vào thư mục fonts
Bước 2: Sử dụng font trong activity
Typeface custom_font = Typeface.createFromAsset(getAssets(), "fonts/your_font_name.ttf");
Ví dụ sử dụng font cho textView:
http://stackoverflow.com/questions/27588965/how-to-use-custom-font-in-android-studio
Nhận xét
Đăng nhận xét