1
嗨我需要一點幫助,使用自定義字體的列表視圖項目。我得到我的字體從資產文件夾是這樣的:Android使用自定義字體的列表視圖項目
Typeface font = Typeface.createFromAsset(getAssets(), "hermesbgbold.otf");
和我想要將其設置爲我的列表視圖項目,但問題是,我使用的是SimpleAdapter我的ListView和TextView的的是在另一個XML中,我將其用作列表視圖的contentView。這是爲了更好地理解代碼:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.events);
// code
SimpleAdapter adapter = new SimpleAdapter(this, items, R.layout.events_items,
new String[]{ICON,TITLE, INFO}, new int[]{ R.id.thumb,R.id.title, R.id.dates})
}
所以,TextView的的,我想用自定義的字體使用的是events_items.xml
。那麼我如何設置title
和dates
來使用這種自定義字體呢?
您必須使用customAdapter –