If you really wanted to use a for-each loop, you could do it like this
(among other ways):

for (int value : Arrays.asList(1, 2, 3, 4, 5)) {
 }

Substituting the actual values for the 1, 2, 3...

20 января 2012 г. 20:05 пользователь Kristopher Micinski <
krismicin...@gmail.com> написал:

> What do you mean, how?  You just pick the constants out of the class,
> one by one.
>
> int a = MediaRecorder.AudioSource.CAMCORDER;
> int b = ...
> ...
>
> This is a very simple question, you might want to read up on Java
> quite a bit more if you wanted to use an array and for to get these
> values..
>
> kris
>
> On Fri, Jan 20, 2012 at 10:56 AM, Giuseppe Porcelli- FINM
> <porcelli.giuse...@gmail.com> wrote:
> > Ok , how?
> >
> > -----Messaggio originale-----
> > Da: android-developers@googlegroups.com
> > [mailto:android-developers@googlegroups.com] Per conto di Kristopher
> > Micinski
> > Inviato: venerdì 20 gennaio 2012 16:51
> > A: android-developers@googlegroups.com
> > Oggetto: Re: [android-developers] How to iterate Class
> >
> > Still doesn't make any sense...  You know the elements you want out of
> the
> > class, so just get them, don't write it in some strange hacky way just to
> > use a for, if you want the values, this has nothing to do with an
> adapter.
> >
> > (Theoretically you could use reflection here, but using an array and for
> is
> > a really bad design vs just taking the values.)
> >
> > kris
> >
> > On Fri, Jan 20, 2012 at 1:12 AM, Giuseppe Porcelli
> > <porcelli.giuse...@gmail.com> wrote:
> >> Want to do a for to create a string array to use with an arrayadaptarer.
> >>
> >> Giuseppe Porcelli
> >>
> >> Il giorno 20/gen/2012, alle ore 01:41, Kristopher Micinski
> > <krismicin...@gmail.com> ha scritto:
> >>
> >>> What?  Why would you do it inside of a for each?
> >>>
> >>> Mark already answered this, but this question sounds very confused...
> >>>
> >>> Don't use a for, just read the values..
> >>>
> >>> kris
> >>>
> >>> On Thu, Jan 19, 2012 at 6:38 AM, Giuseppe <porcelli.giuse...@gmail.com
> >
> > wrote:
> >>>> I need to get the  MediaRecorder.AudioSource constants list, es.
> >>>>
> >>>> CAMCORDER
> >>>> DEFAULT
> >>>> MIC
> >>>> VOICE_CALL
> >>>> VOICE_COMMUNICATION
> >>>> VOICE_DOWNLINK
> >>>> VOICE_RECOGNITION
> >>>> DEFAULT
> >>>> VOICE_UPLINK
> >>>>
> >>>> and their INT value.
> >>>>
> >>>> How to do it inside a for each?
> >>>>
> >>>> Thank you.
> >>>>
> >>>> --
> >>>> 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
> >>
> >> --
> >> 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
> >
> > --
> > 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
>

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