can i do it in MainActivity.java without creating another .java file? here is my code:
lv=(ListView) findViewById(R.id.listView1);
strArr=new ArrayList<String>();
for(int i=0; i<2 ;i++){
strArr.add("Row"+i);
}
Typeface cFont = Typeface.createFromAsset(getAssets(), "cvv.ttf");
lv.setTypeface(cFont);
adapter=new ArrayAdapter<String>(getApplicationContext(), android.R.layout.simple_list_item_1,strArr);
lv.setAdapter(adapter);
adapter.notifyDataSetChanged();