[android-developers] Re: Hi bros

2013-01-10 Thread skink
sree android wrote: Please observe the above attachment image. Their i can implement single choice items dialogue,when i click on particular item the value will change automatically. How can update the selected value. Please share snippet of code or any idea. How can update the selected

[android-developers] Re: Hi bros

2013-01-10 Thread Lew
sree wrote: Please observe the above attachment image. Their i [sic] can implement single choice items dialogue,when i [sic] click on particular item the value will change automatically. How can update the selected value. Please share snippet of code or any idea. Who is bros and what does

Re: [android-developers] Re: Hi bros

2013-01-10 Thread sree android
thank you for you good suggession. -- 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] Re: Hi bros

2013-01-07 Thread tom
Hi, I hope this is useful for u... try this... list.setOnItemClickListener(new OnItemClickListener() { public void onItemClick(AdapterView? arg0, View arg1, int position, long arg3) { Object o = list.getItemAtPosition(position);

[android-developers] Re: Hi bros

2013-01-07 Thread tom
Hi, Use this code i hope this is work... list.setOnItemClickListener(new OnItemClickListener() { public void onItemClick(AdapterView? arg0, View arg1, int position, long arg3) { Object o = list.getItemAtPosition(position); String

[android-developers] Re: Hi bros

2013-01-04 Thread Jonathan S
list.setOnItemClickListener( new OnItemClickListener() { public void onItemClick(AdapterView? arg0, View arg1, int position, long arg3) { Toast.makeText(TasksActivity.this,I am clicked on Item Number is:+position,3000).show(); } }); On Saturday, January 5, 2013 1:49:33 AM UTC-5,

Re: [android-developers] Re: Hi bros

2013-01-04 Thread sree android
It is not Working bro. -- 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

[android-developers] Re: HI BROS

2013-01-01 Thread skink
sree android wrote: After takeing two one dimensional arrays, i prepared one two dimensional array.like this way String [ ][ ] taskoutput=new String[prioritynamearray.length][taskvaluesarray.length]; then Loop is rotating like this way, for (int s = 0; s prioritynamearray.length; s++) {

[android-developers] Re: HI BROS

2013-01-01 Thread Lew
sree wrote: After takeing two one dimensional arrays, i prepared one two dimensional array.like this way String [ ][ ] taskoutput=new String[prioritynamearray.length][taskvaluesarray.length]; then Loop is rotating like this way, for (int s = 0; s prioritynamearray.length; s++) { for

[android-developers] Re: HI BROS

2013-01-01 Thread Matt Kanninen
OP's post needs better subject line. I was expecting a happy new year message. On Tuesday, January 1, 2013 2:22:49 PM UTC-8, Lew wrote: sree wrote: After takeing two one dimensional arrays, i prepared one two dimensional array.like this way String [ ][ ] taskoutput=new

Re: [android-developers] Re: hi bros

2012-12-01 Thread bob
Well, put a breakpoint on that line of code. See if it gets hit when you click your thing. Let me know. On Friday, November 30, 2012 9:46:01 PM UTC-6, sree wrote: i am using but not working Toast.makeText(MyExpandableActivity.this,Clicked Child,Toast.LENGTH_LONG).show(); -- You

[android-developers] Re: hi bros

2012-11-30 Thread bob
Change this line: Toast.makeText(MyExpandableActivity.this,Clicked Child,3000).show(); to this: Toast.makeText(MyExpandableActivity.this,Clicked Child,Toast.LENGTH_LONG).show(); On Friday, November 30, 2012 5:10:13 AM UTC-6, sree wrote: Here i am using ExpandableListview,when i clicked

Re: [android-developers] Re: hi bros

2012-11-30 Thread sree android
i am using but not working Toast.makeText(MyExpandableActivity.this,Clicked Child,Toast.LENGTH_LONG).show(); -- 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