pasta.music.utils.StaticUtils.play()

Here are the examples of the java api pasta.music.utils.StaticUtils.play() taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

1 Examples 7

17 Source : PlaylistFragment.java
with Apache License 2.0
from fennifith

@OnClick(R.id.fab)
public void startFirst(View v) {
    if (trackList == null || trackList.size() < 1)
        return;
    StaticUtils.play(0, trackList, getContext());
    startActivity(new Intent(getActivity(), PlayerActivity.clreplaced));
}