Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Cling upnp stack java, and I detect all upnp devices with my android control point, then i browse a media server and i list the media files ( video, audio ..) . this code display the name of file that i clicked on it like ( videoname.mp4 ), i want to display all the URL, like ( 192.168.1.2:9000/video/videoname.mp4)

how can i do this ?

public void onServiceConnected(ComponentName className, IBinder service) {
        upnpService = (AndroidUpnpService) service;
        getListView().setOnItemClickListener(new AdapterView.OnItemClickListener()
            {
                @Override
                public void onItemClick(AdapterView<?> parent, View view, int position,
                        long id) {
                    // TODO Auto-generated method stub
                    ServerContent item = listAdapter.getItem(position);
                    Log.e("onitemclick","listadapter");
                    item.select();
                    Log.d(item.toString(),"test 1");
                    Log.e(item.getClass().getSimpleName(),"test 2");
                }
            });
            browseServer("0");

        }
share|improve this question
What Cling class is your ServerContent deriving from? – Pavel Zdenek Oct 29 '12 at 9:25
I get the url from the item given by the servercontent thx pavel for your help. – user1735986 Oct 30 '12 at 10:09

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.