Thanks Mark!

I'm very happy with your reply! It works!

The first Tutorial did the trick but a couple things were deprecated.

Here is my final getView Function:

    public View getView(int position, View convertView, ViewGroup
parent) {
        ElementData radioInfo = radioList.get(position);
        View inflatedElementView = View.inflate(context,
R.layout.radio_stream_element_list_bk, null);

        //Set Radio Element Information
        TextView nowPlaying=(TextView)inflatedElementView.findViewById
(R.id.textNowPlaying);
        nowPlaying.setText(radioInfo.getStationName());

        TextView genreType =(TextView)inflatedElementView.findViewById
(R.id.textNowPlaying2);
        genreType.setText(radioInfo.getGenre());

        return inflatedElementView;
    }

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