Re: [android-developers] HI BROS

2013-01-07 Thread Shaikh Altaf
for (int i=0; iarray2d.length;i++) {
for (int j=0; jarray2d[i].length;j++) {
//set 0 the value to neighbour node
array2d[i][j]=100;
}}

System.out.println( array2d[0][1] );
System.out.println( array2d[0][2] );
}

On Tue, Jan 1, 2013 at 4:05 PM, sree android android.sreeni...@gmail.comwrote:

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

[android-developers] Hi bros

2013-01-04 Thread sree android
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=enattachment: device-2013-01-05-122001.png

Re: [android-developers] Hi bros

2013-01-04 Thread TreKing
On Sat, Jan 5, 2013 at 12:49 AM, sree android
android.sreeni...@gmail.comwrote:

 suggest me,What is the problem.


Look at the documentation for makeText. You're using it wrong.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
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] HI BROS

2013-01-01 Thread sree android
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 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