我正在尝试使用以下代码更改Android应用中的字体。但是,它一直向我投掷setTypeFace() cannot be resolved
,我不知道为什么。
navListView = (ListView) findViewById(R.id.nav_listView);
// Font path
String ralewayBold = "fonts/Raleway-Bold.ttf";
String ralewayExtraBold = "fonts/Raleway-ExtraBold.ttf";
String ralewayExtraLight = "fonts/Raleway-ExtraLight.ttf";
String ralewayHeavy = "fonts/Raleway-Heavy.ttf";
String ralewayLight = "fonts/Raleway-Light.ttf";
String ralewayMedium = "fonts/Raleway-Medium.ttf";
String ralewayRegular = "fonts/Raleway-Regular.ttf";
String ralewaySemiBold = "fonts/Raleway-SemiBold.ttf";
String ralewayThin = "fonts/Raleway-Thin.ttf";
// Loading Font Face
Typeface tf = Typeface.createFromAsset(getApplicationContext()
.getAssets(), ralewayLight);
// Applying font
navListView.setTypeface(tf);
答案 0 :(得分:2)
setTypeface
是TextView
而不是ListView
的方法。
如果要将自定义字体样式设置为ListView
中的文本,则必须在自定义适配器的getView
中执行此操作
答案 1 :(得分:0)
因为你直接将字体设置为listview
。要将字体设置为listview
,请在适配器的getView
方法中使用自定义适配器和settypeface。
设置字体请参阅这些帖子