Back to project page audioplayer.
The source code is released under:
GNU General Public License
If you think the Android project audioplayer listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package fr.julien_dumortier.simplemusicplayer.item.itemadapter; /* w ww . j a v a 2s .c o m*/ import java.util.List; import fr.julien_dumortier.simplemusicplayer.item.Item; import android.view.LayoutInflater; import android.widget.BaseAdapter; public abstract class ItemAdapter extends BaseAdapter { protected LayoutInflater mInflater; protected List<Item> mItems; public int getCount() { return mItems.size(); } public Object getItem(int position) { return null; } public long getItemId(int position) { return 0; } }