[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 value.

is it your question? if so, what exactly do you mean?

pskink

-- 
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


[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 he have to do with your question?

In other words, your subject line should be relevant and give a clue 
whether someone should bother reading the post. Hi bros doesn't say 
anything about your question or domain of inquiry.

Plus, no one knows who bros is anyway.

-- 
Lew

-- 
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

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+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[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);
String pos = o.toString();
Toast.makeText(TasksActivity.this,I am clicked on Item Number is:+pos, 
Toast.LENGTH_SHORT)
.show();

}
});

On Saturday, January 5, 2013 12:19:33 PM UTC+5:30, sree wrote:


 Hi friends,
 See The above attachment image.In that i implemented CustomListView and 
 text are retrive from SOAP webservices.
 But When i click on ListView,i cant get any response.
 Why 
 suggest me,What is the problem.

 list.setOnItemClickListener(this);
 @Override
 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();
 
 }


-- 
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

[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 pos = o.toString();
Toast.makeText(TasksActivity.this,I am clicked on Item Number is:+pos, 
Toast.LENGTH_SHORT)
.show();

Thanks,

}
});

On Saturday, January 5, 2013 12:19:33 PM UTC+5:30, sree wrote:


 Hi friends,
 See The above attachment image.In that i implemented CustomListView and 
 text are retrive from SOAP webservices.
 But When i click on ListView,i cant get any response.
 Why 
 suggest me,What is the problem.

 list.setOnItemClickListener(this);
 @Override
 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();
 
 }


-- 
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

[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, sree wrote:


 Hi friends,
 See The above attachment image.In that i implemented CustomListView and 
 text are retrive from SOAP webservices.
 But When i click on ListView,i cant get any response.
 Why 
 suggest me,What is the problem.

 list.setOnItemClickListener(this);
 @Override
 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();
 
 }


-- 
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

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 more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

[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++) {
 for (int t = 0; t taskvaluesarray.length; t++) {
 taskoutput[s][t]=here how can i add above two values into 2d arrays.
 }
 }


 PLEASE SEND ME REPLAY.

i=s*prioritynamearray.length+t
taskoutput[s][t]=arr[i]

or

i=t*taskvaluesarray.length+s
taskoutput[s][t]=arr[i]

pskink

-- 
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


[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 (int t = 0; t taskvaluesarray.length; t++) {
 taskoutput[s][t]=here how can i add above two values into 2d arrays.
  }
 }


 PLEASE SEND ME REPLAY.


You don't need to keep posting the same question over and over. Did not the 
other answers
work for you? Have you replied to the questions in your other thread on 
this exact matter?

I spent a bit of time piecing together example code and links for you. Did 
any of that help?

-- 
Lew
 

-- 
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

[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 
 String[prioritynamearray.length][taskvaluesarray.length];
 then Loop is rotating like this way,


 for (int s = 0; s prioritynamearray.length; s++) {
 for (int t = 0; t taskvaluesarray.length; t++) {
 taskoutput[s][t]=here how can i add above two values into 2d arrays.
  }
 }


 PLEASE SEND ME REPLAY.


 You don't need to keep posting the same question over and over. Did not 
 the other answers
 work for you? Have you replied to the questions in your other thread on 
 this exact matter?

 I spent a bit of time piecing together example code and links for you. Did 
 any of that help?

 -- 
 Lew
  


-- 
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

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 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

[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 child view the toast are 
 not working,why?any one help me.

 and After clicking child Listview their only one window is open(In 
 attachment two .jpg file line number 3,i clicked feed the cat and that 
 window is open)like that their is which concept is used.
 It is usefull for me 

 Sorry for my english plz understand me.


-- 
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

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 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