Merge pull request #287 from prashantkhurana/fix/Media-controls-on-main-screen

Added media volume control on main screen Fixes #38
This commit is contained in:
Christian Schabesberger 2016-05-22 09:18:23 +02:00
commit c85e3c07d6
1 changed files with 2 additions and 2 deletions

View File

@ -3,6 +3,7 @@ package org.schabi.newpipe;
import android.content.Context; import android.content.Context;
import android.content.Intent; import android.content.Intent;
import android.content.SharedPreferences; import android.content.SharedPreferences;
import android.media.AudioManager;
import android.os.Bundle; import android.os.Bundle;
import android.os.Handler; import android.os.Handler;
import android.preference.PreferenceManager; import android.preference.PreferenceManager;
@ -215,8 +216,7 @@ public class VideoItemListActivity extends AppCompatActivity
ErrorActivity.ErrorInfo.make(ErrorActivity.SEARCHED, ErrorActivity.ErrorInfo.make(ErrorActivity.SEARCHED,
ServiceList.getNameOfService(currentStreamingServiceId), "", R.string.general_error)); ServiceList.getNameOfService(currentStreamingServiceId), "", R.string.general_error));
} }
//----------------------------------------------------------------------------- setVolumeControlStream(AudioManager.STREAM_MUSIC);
//to solve issue 38
listFragment = (VideoItemListFragment) getSupportFragmentManager() listFragment = (VideoItemListFragment) getSupportFragmentManager()
.findFragmentById(R.id.videoitem_list); .findFragmentById(R.id.videoitem_list);
listFragment.setStreamingService(streamingService); listFragment.setStreamingService(streamingService);