Re: [android-developers] setTypeface

2011-05-10 Thread Sakthivel A M
Hi Subha, Can u help me how to search Employee details by typing employee name. Try to send Code. Thank u On Mon, May 9, 2011 at 3:27 PM, subhashini alaguchokku subhashini.andr...@gmail.com wrote: Hi! how to implement the following concept Typeface

[android-developers] SetTypeface with holder

2011-05-10 Thread subha
Hi! public View getView(int position, View convertView, ViewGroup parent) { View vi=convertView; ViewHolder holder; if(convertView==null){ System.out.println(inside null); vi =

[android-developers] setTypeface

2011-05-09 Thread subhashini alaguchokku
Hi! how to implement the following concept Typeface tf=Typeface.createFromAsset(getAssets(), maduram.ttf); tv.setTypeface(tf); Here. public View getView(int position, View convertView, ViewGroup parent) { View vi=convertView; ViewHolder holder;

Re: [android-developers] setTypeface

2011-05-09 Thread gaurav gupta
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);

Re: [android-developers] setTypeface

2011-05-09 Thread subha
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.comwrote: hi , ' use these lines in ur

Re: [android-developers] setTypeface

2011-05-09 Thread Mark Murphy
And your err in getAssets() is... what, exactly? On Mon, May 9, 2011 at 6:21 AM, 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

Re: [android-developers] setTypeface

2011-05-09 Thread subha
Hi Mr.Mark Murphy ! Thanks for your reply, i got The method getAssets() is undefined for the type ListAdapter this err. On Mon, May 9, 2011 at 3:59 PM, Mark Murphy mmur...@commonsware.com wrote: And your err in getAssets() is... what, exactly? On Mon, May 9, 2011 at 6:21 AM, subha

Re: [android-developers] setTypeface

2011-05-09 Thread Mark Murphy
On Mon, May 9, 2011 at 6:34 AM, subha subhashini.andr...@gmail.com wrote: Thanks for your reply,  i got The method getAssets() is undefined for the type ListAdapter this err. You need to call getAssets() on your Activity. For example, f the ListAdapter is an ArrayAdapter, there is a

Re: [android-developers] setTypeface

2011-05-09 Thread gaurav gupta
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

Re: [android-developers] setTypeface

2011-05-09 Thread Sakthivel A M
Hi guys, I have one problem. I had created database and added some Employee datas. When i am searching employee i am using auto increment id but i need how to search using emp Name. Please help me. If u have any example please attach. Thank u Regards, Shakthi On Mon, May 9, 2011

Re: [android-developers] setTypeface

2011-05-09 Thread subha
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.comwrote: hi, use this code in ur activity where u r calling ListAdapter ListItemView listitem = *new* ListItemView(PhoneBookScreen.*this*,