[android-developers] Re: How to stop any currently played audio?

2009-07-02 Thread quanghuytruongdinh
In my memory, Android has a class that take care of device audio stream. Maybe you can investigate on this class. On Jul 2, 5:40 pm, hmmm akul...@mail.ru wrote: Hi, I'm developing an application which plays some music files. I want to stop any other audio playback when my application starts

[android-developers] Re: ListView with different types of View's

2009-07-02 Thread quanghuytruongdinh
Build a class that extends BaseAdapter, you can customize what u want here. Then use this class as the adapter for your ListView. On Jul 2, 8:45 pm, ayanir ayanir...@gmail.com wrote: Hello for all the Android's out there, I'm trying to make a ListView when every item in that list can be a

[android-developers] Re: how to create a pop up window?

2009-06-05 Thread quanghuytruongdinh
Create a class, for example: IconfiedTextListAdapter extends BaseAdapter: @Override public View getView(int position, View convertView, ViewGroup parent) { IconfiedTextView itv; if(convertView == null){ itv = new