I am creating online media player. In which user can create their own playlist. So for each user there is a different list. And in that list there is one Item called Quickmix which is fix and which is at the top of that list. I want to show the icon near Quickmix text and also want to show an Icon near to currently playing playlist name. for showing that list I created one ListView in xml file. and I have created PlayListActivity.java which extends Activity. in that class I have created one ArrayAdapter
private ArrayAdapter< String > mPlayListAdapter = null;
private ListView mPlayList = null;
private String[] mPlayListNames = null;
and in onCreate method my code is like
setContentView( R.layout.playlist_layout );
mPlayList = new String[array.length ];
for( int i = 0; i < length; i++ )
{
mPlayListNames[i] = array[i].mPlayList;
}
mPlayList = ( ListView )findViewById( R.id.playList );
try {
mPlayListAdapter =
new ArrayAdapter< String >( this,
android.R.layout.simple_list_item_1,
mPlayListNames );
mPlayList.setAdapter( mPlayListAdapter );
mPlayList.setOnItemClickListener( mPlayListListener );
} catch( Exception e ) {
Intent nextActivityIntent = new Intent(
getApplicationContext(),
Welcome.class );
finish();
startActivity( nextActivityIntent );
return;
}
/**
* Called when user clicks on any playlist name. This listener starts
* playback of that playlist.
*/
private OnItemClickListener mPlayListListener =
new OnItemClickListener()
{
public void onItemClick( AdapterView<?> parent, View view,
int position, long id )
{
Intent nextActivityIntent = new Intent( view.getContext(),
SomeActivity.class );
//Some code to start SomeActivity
}
};
I cannot extend ListActivity/any to PlayListActivity.java I can only extend Activity.
is there any solution how to do this ?