my problem is that how can change font in hindi in custom listview in android.I am using this code Typeface hindiFont=Typeface.createFromAsset(getAssets(),"fonts/DroidHindi.ttf"); // Adding menuItems to ListView
ListAdapter adapter = new SimpleAdapter(this, menuItems,
R.layout.list_item,
new String[] { KEY_NAME, KEY_DESC, KEY_COST }, new int[] {
R.id.name, R.id.desciption, R.id.cost });
// Typeface tf = Typeface.createFromAsset(getAssets(), "fonts/DroidHindi.ttf");
setListAdapter(adapter);
// selecting single ListView item
ListView lv = getListView();
please help me out. thanks in advance!!!!!!!!!
i am override the getView method but can not work.please help me.