Hello everyone,

i posted a question about passing a listview from one activity to
another and this is what i did so far..

the first activity is this:

  Bundle bundle = new Bundle(1);

                bundle.putStringArrayList("fromLat", fromLat);



                        Intent intent1=new
Intent(piecesActivity.this,ttsActivity.class);

                        intent1.putStringArrayListExtra("fromLat", fromLat);

                        startActivity(intent1);
                               startActivityForResult(intent1, 2);

in The Second Activity is:


 ArrayList <String>fLat = new ArrayList<String> ();

Intent intent=new Intent();
 fLat=intent.getStringArrayListExtra("fromLat");

System.out.println("=============================38"+fLat);



and in the second activity i am trying to make the list as a
text_to_speach:

        @Override
                public void onClick(View v) {


                      if (fLat!=null && ((CharSequence) fLat).length()>0) {
                   Toast.makeText(ttsActivity.this, "Saying: " + fLat,
Toast.LENGTH_LONG).show();
                   tts.speak(fLat, TextToSpeech.QUEUE_ADD, null);
                      }




i don't know why the second activity is giving me NullPointerException
(the fLat is returning Null) and the .speak method is not accepting a
list view... :S


I really need an advice...any Idea will be very appreciated.



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

Reply via email to