Hi! give any other idea? use holder with typeface concept give sample code
On Mon, May 9, 2011 at 4:31 PM, gaurav gupta <gaurav.gupta...@gmail.com>wrote: > hi, > use this code in ur activity where u r calling ListAdapter > > > ListItemView listitem = *new* ListItemView(PhoneBookScreen.*this*, > R.layout.*list_item_view_phbook*, > > tracks.get(i).getContactName()); > > TextView tv=(TextView)listitem.findViewById(R.id.*address_textview*); > > Typeface tf=Typeface.*createFromAsset*(getAssets(), "maduram.ttf"); > > tv.setTypeface(tf); > > i just use these lines as demo. try to use it . here listItem is a custom > listAdapter. > try once , :) > > > > On Mon, May 9, 2011 at 3:51 PM, subha <subhashini.andr...@gmail.com>wrote: > >> Hi Mr.gaurav gupta ! >> >> >> Thanks for your response , but i can't use this line >> >> Typeface tf=Typeface.createFromAsset(getAssets(), "maduram.ttf"); >> >> particularly i got err in getAssets(); >> >> >> On Mon, May 9, 2011 at 3:33 PM, gaurav gupta >> <gaurav.gupta...@gmail.com>wrote: >> >>> hi , ' >>> use these lines in ur application >>> >>> On Mon, May 9, 2011 at 3:27 PM, subhashini alaguchokku < >>> subhashini.andr...@gmail.com> wrote: >>> >>>> Hi! >>>> >>>> how to implement the following concept >>>> >>>> >>>> Typeface tf=Typeface.createFromAsset(getAssets(), >>>> "maduram.ttf"); >>>> holder.text1=(TextView)vi.findViewById(R.id.text1); >>>> holder.text1.setTypeface(tf); >>>> >>>> i hope this will work 4 u.. >>> >>>> >>>> >>>> Here. >>>> >>>> >>>> >>>> public View getView(int position, View convertView, ViewGroup parent) >>>> { >>>> View vi=convertView; >>>> ViewHolder holder; >>>> if(convertView==null){ >>>> System.out.println("inside >>>> null........................................"); >>>> vi = inflater.inflate(R.layout.item, null); >>>> holder=new ViewHolder(); >>>> holder.text=(TextView)vi.findViewById(R.id.text); >>>> holder.text1=(TextView)vi.findViewById(R.id.text1); >>>> //Typeface typeface = >>>> Typeface.createFromAsset(myContext.getAssets(), "FONT.TTF"); >>>> >>>> holder.image=(ImageView)vi.findViewById(R.id.image); >>>> vi.setTag(holder); >>>> >>>> } >>>> else >>>> holder=(ViewHolder)vi.getTag(); >>>> >>>> holder.text.setText(Listdisplay.name[position]); >>>> holder.text1.setText(Listdisplay.count[position]); >>>> >>>> holder.image.setTag(data[position]); >>>> System.out.println("inside not >>>> null..........................................."); >>>> imageLoader.DisplayImage(data[position], activity, >>>> holder.image); >>>> return vi; >>>> } >>>> } >>>> >>>> -- >>>> You received this message because you are subscribed to the Google >>>> Groups "Android Developers" group. >>>> To post to this group, send email to >>>> android-developers@googlegroups.com >>>> To unsubscribe from this group, send email to >>>> android-developers+unsubscr...@googlegroups.com >>>> For more options, visit this group at >>>> http://groups.google.com/group/android-developers?hl=en >>> >>> >>> -- >>> You received this message because you are subscribed to the Google >>> Groups "Android Developers" group. >>> To post to this group, send email to android-developers@googlegroups.com >>> To unsubscribe from this group, send email to >>> android-developers+unsubscr...@googlegroups.com >>> For more options, visit this group at >>> http://groups.google.com/group/android-developers?hl=en >> >> >> -- >> You received this message because you are subscribed to the Google >> Groups "Android Developers" group. >> To post to this group, send email to android-developers@googlegroups.com >> To unsubscribe from this group, send email to >> android-developers+unsubscr...@googlegroups.com >> For more options, visit this group at >> http://groups.google.com/group/android-developers?hl=en >> > > -- > You received this message because you are subscribed to the Google > Groups "Android Developers" group. > To post to this group, send email to android-developers@googlegroups.com > To unsubscribe from this group, send email to > android-developers+unsubscr...@googlegroups.com > For more options, visit this group at > http://groups.google.com/group/android-developers?hl=en > -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en