3장 : 사용자 인터페이스
3장 : 사용자 인터페이스 폰트 적용하기 폴더생성하기 View : Project Path : app/src/main/assets 폴더 생성 폰트 적용 assets 폴더 아래로 해서 상대경로로 넣어주면 된다. ( 자동으로 만들어 주는 것이 좋음 ) 수동생성 가능 (비추천) / 수동으로 만들면 Andorid 에서 보여 지지 않음. 프로젝트 - 모듈명 선택 - new - folder - assets - folder TextView txtTitle = findViewById(R.id.txtTitle); Typeface custom_font = Typeface.createFromAsset(getAssets(), "fonts/Typo_DecoSolidSlash.ttf"); txtTitle.setTypeface(cu..
ANDROID/깡샘의_안드로이드_프로그래밍
2017. 11. 23. 14:45