• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Search results

  1. Z

    Apps BaseAdapter problem

    Hi all I custom an adapter that extends BaseAdapter.In the getView() method I use the code Log.d("test",Integer.toString(position)); to output the position. The problem now is every time when the adapter notifyDataSetChanged() method is invoked the position first is 0 1 2 3 4(5 items in the...
  2. Z

    Apps Android system music player

    Hi all: I use the following codes to call android system music player: Uri uri = Uri.parse(url); Intent intent = new Intent(); intent.setDataAndType(uri, "audio/*"); intent.setAction(Intent.ACTION_VIEW)...