following is a code snippet from an app of android where I want to change the font of my listView items. But it doesn't affect:
ListView lv = (ListView) findViewById(R.id.listView);
Typeface tf= Typeface.createFromAsset(getAssets(),"fonts/JAMEEL.TTF");
Paint paint = new Paint(tf);
lv.setPaint(paint);
Please tell me how to change the font of listview items.