2017-04-09 19:34:00 +02:00
|
|
|
/*
|
2016-08-02 15:06:02 +02:00
|
|
|
* Created by Christian Schabesberger on 02.08.16.
|
2017-04-09 19:34:00 +02:00
|
|
|
* <p>
|
2016-09-12 00:33:11 +02:00
|
|
|
* Copyright (C) Christian Schabesberger 2016 <chris.schabesberger@mailbox.org>
|
2016-09-27 21:33:26 +02:00
|
|
|
* DownloadActivity.java is part of NewPipe.
|
2017-04-09 19:34:00 +02:00
|
|
|
* <p>
|
2016-09-12 00:33:11 +02:00
|
|
|
* NewPipe is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
2017-04-09 19:34:00 +02:00
|
|
|
* <p>
|
2016-09-12 00:33:11 +02:00
|
|
|
* NewPipe is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
2017-04-09 19:34:00 +02:00
|
|
|
* <p>
|
2016-09-12 00:33:11 +02:00
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with NewPipe. If not, see <http://www.gnu.org/licenses/>.
|
2016-08-02 15:06:02 +02:00
|
|
|
*/
|
2016-08-02 01:26:12 +02:00
|
|
|
|
2017-04-09 19:34:00 +02:00
|
|
|
package org.schabi.newpipe;
|
|
|
|
|
|
|
|
import android.content.Intent;
|
2017-06-05 21:33:01 +02:00
|
|
|
import android.content.SharedPreferences;
|
2018-04-06 23:19:45 +02:00
|
|
|
import android.content.pm.PackageManager;
|
2018-02-21 00:24:43 +01:00
|
|
|
import android.net.Uri;
|
2017-04-09 19:34:00 +02:00
|
|
|
import android.os.Bundle;
|
2017-09-03 08:04:18 +02:00
|
|
|
import android.os.Handler;
|
|
|
|
import android.os.Looper;
|
2017-06-05 21:33:01 +02:00
|
|
|
import android.preference.PreferenceManager;
|
2018-04-06 23:19:45 +02:00
|
|
|
import android.support.annotation.NonNull;
|
2017-11-19 17:21:46 +01:00
|
|
|
import android.support.design.widget.NavigationView;
|
2017-04-09 19:34:00 +02:00
|
|
|
import android.support.v4.app.Fragment;
|
2017-11-19 17:21:46 +01:00
|
|
|
import android.support.v4.view.GravityCompat;
|
|
|
|
import android.support.v4.widget.DrawerLayout;
|
2017-04-26 21:32:04 +02:00
|
|
|
import android.support.v7.app.ActionBar;
|
2017-11-19 17:21:46 +01:00
|
|
|
import android.support.v7.app.ActionBarDrawerToggle;
|
2017-04-09 19:34:00 +02:00
|
|
|
import android.support.v7.app.AppCompatActivity;
|
2017-04-26 21:32:04 +02:00
|
|
|
import android.support.v7.widget.Toolbar;
|
|
|
|
import android.util.Log;
|
2018-02-16 23:56:04 +01:00
|
|
|
import android.view.Gravity;
|
2017-04-09 19:34:00 +02:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
|
|
|
import android.view.MenuItem;
|
2017-04-26 21:32:04 +02:00
|
|
|
import android.view.View;
|
2018-02-16 14:45:52 +01:00
|
|
|
import android.widget.Button;
|
|
|
|
import android.widget.ImageButton;
|
2018-02-16 23:56:04 +01:00
|
|
|
import android.widget.TextView;
|
2017-04-09 19:34:00 +02:00
|
|
|
|
2018-02-19 21:04:13 +01:00
|
|
|
import org.schabi.newpipe.extractor.NewPipe;
|
2017-04-09 19:34:00 +02:00
|
|
|
import org.schabi.newpipe.extractor.StreamingService;
|
2018-06-08 21:07:25 +02:00
|
|
|
import org.schabi.newpipe.extractor.exceptions.ExtractionException;
|
2017-09-03 08:04:18 +02:00
|
|
|
import org.schabi.newpipe.fragments.BackPressable;
|
2018-01-30 08:01:57 +01:00
|
|
|
import org.schabi.newpipe.fragments.MainFragment;
|
2017-04-09 19:34:00 +02:00
|
|
|
import org.schabi.newpipe.fragments.detail.VideoDetailFragment;
|
2017-09-03 08:04:18 +02:00
|
|
|
import org.schabi.newpipe.fragments.list.search.SearchFragment;
|
2018-02-19 21:04:13 +01:00
|
|
|
import org.schabi.newpipe.report.ErrorActivity;
|
2018-06-08 21:07:25 +02:00
|
|
|
import org.schabi.newpipe.report.UserAction;
|
2017-04-09 19:34:00 +02:00
|
|
|
import org.schabi.newpipe.util.Constants;
|
2018-06-08 21:07:25 +02:00
|
|
|
import org.schabi.newpipe.util.KioskTranslator;
|
2017-04-09 19:34:00 +02:00
|
|
|
import org.schabi.newpipe.util.NavigationHelper;
|
2018-04-06 23:19:45 +02:00
|
|
|
import org.schabi.newpipe.util.PermissionHelper;
|
2018-01-30 08:01:57 +01:00
|
|
|
import org.schabi.newpipe.util.ServiceHelper;
|
2017-09-03 08:04:18 +02:00
|
|
|
import org.schabi.newpipe.util.StateSaver;
|
2017-04-09 19:34:00 +02:00
|
|
|
import org.schabi.newpipe.util.ThemeHelper;
|
|
|
|
|
2018-07-08 17:46:21 +02:00
|
|
|
import static org.schabi.newpipe.extractor.InfoItem.InfoType.PLAYLIST;
|
|
|
|
|
2018-01-27 06:34:17 +01:00
|
|
|
public class MainActivity extends AppCompatActivity {
|
2017-08-12 06:50:25 +02:00
|
|
|
private static final String TAG = "MainActivity";
|
2018-01-30 08:01:57 +01:00
|
|
|
public static final boolean DEBUG = !BuildConfig.BUILD_TYPE.equals("release");
|
|
|
|
|
2018-01-20 18:06:34 +01:00
|
|
|
private ActionBarDrawerToggle toggle = null;
|
2018-02-16 23:56:04 +01:00
|
|
|
private DrawerLayout drawer = null;
|
|
|
|
private NavigationView drawerItems = null;
|
|
|
|
private TextView headerServiceView = null;
|
2016-08-02 15:06:02 +02:00
|
|
|
|
2017-04-09 19:34:00 +02:00
|
|
|
/*//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Activity's LifeCycle
|
|
|
|
//////////////////////////////////////////////////////////////////////////*/
|
|
|
|
|
2016-08-02 01:26:12 +02:00
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceState) {
|
2018-01-30 08:01:57 +01:00
|
|
|
if (DEBUG) Log.d(TAG, "onCreate() called with: savedInstanceState = [" + savedInstanceState + "]");
|
|
|
|
|
|
|
|
ThemeHelper.setTheme(this, ServiceHelper.getSelectedServiceId(this));
|
|
|
|
|
2017-04-09 19:34:00 +02:00
|
|
|
super.onCreate(savedInstanceState);
|
2016-08-02 01:26:12 +02:00
|
|
|
setContentView(R.layout.activity_main);
|
2017-04-17 06:21:48 +02:00
|
|
|
|
|
|
|
if (getSupportFragmentManager() != null && getSupportFragmentManager().getBackStackEntryCount() == 0) {
|
|
|
|
initFragments();
|
|
|
|
}
|
2017-04-26 21:32:04 +02:00
|
|
|
|
2018-01-30 08:01:57 +01:00
|
|
|
setSupportActionBar(findViewById(R.id.toolbar));
|
2018-06-08 21:07:25 +02:00
|
|
|
try {
|
|
|
|
setupDrawer();
|
|
|
|
} catch (Exception e) {
|
|
|
|
ErrorActivity.reportUiError(this, e);
|
|
|
|
}
|
2018-01-30 08:01:57 +01:00
|
|
|
}
|
|
|
|
|
2018-06-08 21:07:25 +02:00
|
|
|
private void setupDrawer() throws Exception {
|
2017-11-19 17:21:46 +01:00
|
|
|
final Toolbar toolbar = findViewById(R.id.toolbar);
|
2018-02-16 23:56:04 +01:00
|
|
|
drawer = findViewById(R.id.drawer_layout);
|
|
|
|
drawerItems = findViewById(R.id.navigation);
|
2017-11-19 17:21:46 +01:00
|
|
|
|
2018-06-08 21:07:25 +02:00
|
|
|
//Services
|
|
|
|
|
2018-03-30 18:41:11 +02:00
|
|
|
for(StreamingService s : NewPipe.getServices()) {
|
2018-04-08 21:26:37 +02:00
|
|
|
final String title = s.getServiceInfo().getName() +
|
|
|
|
(ServiceHelper.isBeta(s) ? " (beta)" : "");
|
2018-06-08 21:07:25 +02:00
|
|
|
|
|
|
|
drawerItems.getMenu()
|
|
|
|
.add(R.id.menu_services_group, s.getServiceId(), 0, title)
|
|
|
|
.setIcon(ServiceHelper.getIcon(s.getServiceId()));
|
2018-03-30 18:41:11 +02:00
|
|
|
}
|
|
|
|
|
2018-06-08 21:07:25 +02:00
|
|
|
//Tabs
|
2018-06-08 16:11:59 +02:00
|
|
|
|
2018-06-08 21:07:25 +02:00
|
|
|
int currentServiceId = ServiceHelper.getSelectedServiceId(this);
|
|
|
|
StreamingService service = NewPipe.getService(currentServiceId);
|
|
|
|
|
|
|
|
int kioskId = 0;
|
|
|
|
|
|
|
|
for (final String ks : service.getKioskList().getAvailableKiosks()) {
|
|
|
|
drawerItems.getMenu()
|
|
|
|
.add(R.id.menu_tabs_group, kioskId, 0, KioskTranslator.getTranslatedKioskName(ks, this))
|
|
|
|
.setIcon(KioskTranslator.getKioskIcons(ks, this));
|
|
|
|
kioskId ++;
|
|
|
|
}
|
|
|
|
|
|
|
|
drawerItems.getMenu()
|
|
|
|
.add(R.id.menu_tabs_group, -1, 0, R.string.tab_subscriptions)
|
|
|
|
.setIcon(ThemeHelper.resolveResourceIdFromAttr(this, R.attr.ic_channel));
|
|
|
|
drawerItems.getMenu()
|
|
|
|
.add(R.id.menu_tabs_group, -2, 0, R.string.fragment_whats_new)
|
|
|
|
.setIcon(ThemeHelper.resolveResourceIdFromAttr(this, R.attr.rss));
|
|
|
|
drawerItems.getMenu()
|
|
|
|
.add(R.id.menu_tabs_group, -3, 0, R.string.tab_bookmarks)
|
|
|
|
.setIcon(ThemeHelper.resolveResourceIdFromAttr(this, R.attr.ic_bookmark));
|
|
|
|
drawerItems.getMenu()
|
|
|
|
.add(R.id.menu_tabs_group, -4, 0, R.string.downloads)
|
|
|
|
.setIcon(ThemeHelper.resolveResourceIdFromAttr(this, R.attr.download));
|
|
|
|
drawerItems.getMenu()
|
|
|
|
.add(R.id.menu_tabs_group, -5, 0, R.string.action_history)
|
|
|
|
.setIcon(ThemeHelper.resolveResourceIdFromAttr(this, R.attr.history));
|
|
|
|
|
|
|
|
//Settings and About
|
|
|
|
|
|
|
|
drawerItems.getMenu()
|
|
|
|
.add(R.id.menu_options_about_group, 0, 0, R.string.settings)
|
|
|
|
.setIcon(ThemeHelper.resolveResourceIdFromAttr(this, R.attr.settings));
|
|
|
|
drawerItems.getMenu()
|
|
|
|
.add(R.id.menu_options_about_group, 1, 0, R.string.tab_about)
|
|
|
|
.setIcon(ThemeHelper.resolveResourceIdFromAttr(this, R.attr.info));
|
|
|
|
|
|
|
|
|
|
|
|
drawerItems.getMenu().getItem(ServiceHelper.getSelectedServiceId(this)).setChecked(true);
|
2017-11-20 16:04:18 +01:00
|
|
|
|
2018-06-15 07:21:30 +02:00
|
|
|
toggle = new ActionBarDrawerToggle(this, drawer, toolbar,
|
|
|
|
R.string.drawer_open, R.string.drawer_close) {
|
|
|
|
@Override
|
|
|
|
public void onDrawerClosed(View view) { super.onDrawerClosed(view); }
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onDrawerOpened(View drawerView) { super.onDrawerOpened(drawerView); }
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onDrawerSlide(View drawerView, float slideOffset) {
|
|
|
|
super.onDrawerSlide(drawerView, 0);
|
|
|
|
}
|
|
|
|
};
|
2018-03-30 11:09:07 +02:00
|
|
|
toggle.syncState();
|
|
|
|
drawer.addDrawerListener(toggle);
|
|
|
|
drawer.addDrawerListener(new DrawerLayout.SimpleDrawerListener() {
|
|
|
|
private int lastService;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onDrawerOpened(View drawerView) {
|
|
|
|
lastService = ServiceHelper.getSelectedServiceId(MainActivity.this);
|
|
|
|
}
|
2017-11-19 17:21:46 +01:00
|
|
|
|
2018-03-30 11:09:07 +02:00
|
|
|
@Override
|
|
|
|
public void onDrawerClosed(View drawerView) {
|
|
|
|
if (lastService != ServiceHelper.getSelectedServiceId(MainActivity.this)) {
|
|
|
|
new Handler(Looper.getMainLooper()).post(MainActivity.this::recreate);
|
2017-11-19 17:21:46 +01:00
|
|
|
}
|
2018-03-30 11:09:07 +02:00
|
|
|
}
|
|
|
|
});
|
2017-08-12 06:50:25 +02:00
|
|
|
|
2018-06-08 21:07:25 +02:00
|
|
|
drawerItems.setNavigationItemSelectedListener(this::drawerItemSelected);
|
2018-03-30 11:09:07 +02:00
|
|
|
setupDrawerHeader();
|
2017-08-12 06:50:25 +02:00
|
|
|
}
|
|
|
|
|
2018-06-08 21:07:25 +02:00
|
|
|
private boolean drawerItemSelected(MenuItem item) {
|
|
|
|
switch (item.getGroupId()) {
|
|
|
|
case R.id.menu_services_group:
|
|
|
|
changeService(item);
|
|
|
|
break;
|
|
|
|
case R.id.menu_tabs_group:
|
|
|
|
try {
|
|
|
|
tabSelected(item);
|
|
|
|
} catch (Exception e) {
|
|
|
|
ErrorActivity.reportUiError(this, e);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case R.id.menu_options_about_group:
|
|
|
|
optionsAboutSelected(item);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
2018-03-30 11:09:07 +02:00
|
|
|
|
2018-06-08 21:07:25 +02:00
|
|
|
drawer.closeDrawers();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void changeService(MenuItem item) {
|
2018-06-15 07:21:30 +02:00
|
|
|
drawerItems.getMenu().getItem(ServiceHelper.getSelectedServiceId(this)).setChecked(false);
|
|
|
|
ServiceHelper.setSelectedServiceId(this, item.getItemId());
|
|
|
|
drawerItems.getMenu().getItem(ServiceHelper.getSelectedServiceId(this)).setChecked(true);
|
2018-02-16 23:56:04 +01:00
|
|
|
}
|
|
|
|
|
2018-06-08 21:07:25 +02:00
|
|
|
private void tabSelected(MenuItem item) throws ExtractionException {
|
|
|
|
switch(item.getItemId()) {
|
|
|
|
case -1:
|
|
|
|
NavigationHelper.openSubscriptionFragment(getSupportFragmentManager());
|
|
|
|
break;
|
|
|
|
case -2:
|
|
|
|
NavigationHelper.openWhatsNewFragment(getSupportFragmentManager());
|
|
|
|
break;
|
|
|
|
case -3:
|
|
|
|
NavigationHelper.openBookmarksFragment(getSupportFragmentManager());
|
|
|
|
break;
|
|
|
|
case -4:
|
|
|
|
NavigationHelper.openDownloads(this);
|
|
|
|
break;
|
|
|
|
case -5:
|
|
|
|
NavigationHelper.openStatisticFragment(getSupportFragmentManager());
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
int currentServiceId = ServiceHelper.getSelectedServiceId(this);
|
|
|
|
StreamingService service = NewPipe.getService(currentServiceId);
|
|
|
|
String serviceName = "";
|
2018-02-16 14:45:52 +01:00
|
|
|
|
2018-06-08 21:07:25 +02:00
|
|
|
int kioskId = 0;
|
|
|
|
for (final String ks : service.getKioskList().getAvailableKiosks()) {
|
|
|
|
if(kioskId == item.getItemId()) {
|
|
|
|
serviceName = ks;
|
|
|
|
}
|
|
|
|
kioskId ++;
|
|
|
|
}
|
|
|
|
|
|
|
|
NavigationHelper.openKioskFragment(getSupportFragmentManager(), currentServiceId, serviceName);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
private void optionsAboutSelected(MenuItem item) {
|
|
|
|
switch(item.getItemId()) {
|
|
|
|
case 0:
|
|
|
|
NavigationHelper.openSettings(this);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
NavigationHelper.openAbout(this);
|
|
|
|
break;
|
|
|
|
}
|
2018-02-16 14:45:52 +01:00
|
|
|
}
|
|
|
|
|
2018-02-16 23:56:04 +01:00
|
|
|
private void setupDrawerHeader() {
|
2018-06-13 22:35:20 +02:00
|
|
|
NavigationView navigationView = findViewById(R.id.navigation);
|
|
|
|
View hView = navigationView.getHeaderView(0);
|
|
|
|
|
|
|
|
headerServiceView = hView.findViewById(R.id.drawer_header_service_view);
|
|
|
|
Button action = hView.findViewById(R.id.drawer_header_action_button);
|
2018-02-19 21:04:13 +01:00
|
|
|
action.setOnClickListener(view -> {
|
2018-02-21 00:24:43 +01:00
|
|
|
Intent intent = new Intent(Intent.ACTION_VIEW);
|
|
|
|
intent.setData(Uri.parse("https://newpipe.schabi.org/blog/"));
|
|
|
|
startActivity(intent);
|
2018-02-19 21:04:13 +01:00
|
|
|
drawer.closeDrawers();
|
|
|
|
});
|
2018-02-16 23:56:04 +01:00
|
|
|
}
|
|
|
|
|
2017-08-12 06:50:25 +02:00
|
|
|
@Override
|
|
|
|
protected void onDestroy() {
|
|
|
|
super.onDestroy();
|
2017-09-03 08:04:18 +02:00
|
|
|
if (!isChangingConfigurations()) {
|
|
|
|
StateSaver.clearStateFiles();
|
|
|
|
}
|
2017-04-09 19:34:00 +02:00
|
|
|
}
|
|
|
|
|
2017-06-05 21:33:01 +02:00
|
|
|
@Override
|
|
|
|
protected void onResume() {
|
|
|
|
super.onResume();
|
|
|
|
|
2018-02-16 23:56:04 +01:00
|
|
|
// close drawer on return, and don't show animation, so its looks like the drawer isn't open
|
|
|
|
// when the user returns to MainActivity
|
|
|
|
drawer.closeDrawer(Gravity.START, false);
|
2018-02-19 21:04:13 +01:00
|
|
|
try {
|
2018-03-30 11:09:07 +02:00
|
|
|
String selectedServiceName = NewPipe.getService(
|
|
|
|
ServiceHelper.getSelectedServiceId(this)).getServiceInfo().getName();
|
|
|
|
headerServiceView.setText(selectedServiceName);
|
2018-02-19 21:04:13 +01:00
|
|
|
} catch (Exception e) {
|
|
|
|
ErrorActivity.reportUiError(this, e);
|
|
|
|
}
|
2018-02-16 23:56:04 +01:00
|
|
|
|
2017-09-03 08:04:18 +02:00
|
|
|
SharedPreferences sharedPreferences = PreferenceManager.getDefaultSharedPreferences(this);
|
2017-06-05 21:33:01 +02:00
|
|
|
if (sharedPreferences.getBoolean(Constants.KEY_THEME_CHANGE, false)) {
|
|
|
|
if (DEBUG) Log.d(TAG, "Theme has changed, recreating activity...");
|
|
|
|
sharedPreferences.edit().putBoolean(Constants.KEY_THEME_CHANGE, false).apply();
|
2017-09-03 08:04:18 +02:00
|
|
|
// https://stackoverflow.com/questions/10844112/runtimeexception-performing-pause-of-activity-that-is-not-resumed
|
|
|
|
// Briefly, let the activity resume properly posting the recreate call to end of the message queue
|
2018-01-30 08:01:57 +01:00
|
|
|
new Handler(Looper.getMainLooper()).post(MainActivity.this::recreate);
|
2017-06-05 21:33:01 +02:00
|
|
|
}
|
|
|
|
|
2018-01-30 08:01:57 +01:00
|
|
|
if (sharedPreferences.getBoolean(Constants.KEY_MAIN_PAGE_CHANGE, false)) {
|
2017-10-13 13:49:31 +02:00
|
|
|
if (DEBUG) Log.d(TAG, "main page has changed, recreating main fragment...");
|
|
|
|
sharedPreferences.edit().putBoolean(Constants.KEY_MAIN_PAGE_CHANGE, false).apply();
|
|
|
|
NavigationHelper.openMainActivity(this);
|
|
|
|
}
|
2017-06-05 21:33:01 +02:00
|
|
|
}
|
|
|
|
|
2017-04-09 19:34:00 +02:00
|
|
|
@Override
|
|
|
|
protected void onNewIntent(Intent intent) {
|
2017-04-26 21:32:04 +02:00
|
|
|
if (DEBUG) Log.d(TAG, "onNewIntent() called with: intent = [" + intent + "]");
|
2017-04-17 06:21:48 +02:00
|
|
|
if (intent != null) {
|
|
|
|
// Return if launched from a launcher (e.g. Nova Launcher, Pixel Launcher ...)
|
|
|
|
// to not destroy the already created backstack
|
|
|
|
String action = intent.getAction();
|
2017-09-03 08:04:18 +02:00
|
|
|
if ((action != null && action.equals(Intent.ACTION_MAIN)) && intent.hasCategory(Intent.CATEGORY_LAUNCHER)) return;
|
2017-04-17 06:21:48 +02:00
|
|
|
}
|
|
|
|
|
2017-04-09 19:34:00 +02:00
|
|
|
super.onNewIntent(intent);
|
2017-04-17 06:21:48 +02:00
|
|
|
setIntent(intent);
|
2017-04-09 19:34:00 +02:00
|
|
|
handleIntent(intent);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBackPressed() {
|
2017-04-26 21:32:04 +02:00
|
|
|
if (DEBUG) Log.d(TAG, "onBackPressed() called");
|
2017-06-05 21:33:01 +02:00
|
|
|
|
2017-04-09 19:34:00 +02:00
|
|
|
Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.fragment_holder);
|
2017-09-03 08:04:18 +02:00
|
|
|
// If current fragment implements BackPressable (i.e. can/wanna handle back press) delegate the back press to it
|
|
|
|
if (fragment instanceof BackPressable) {
|
|
|
|
if (((BackPressable) fragment).onBackPressed()) return;
|
|
|
|
}
|
2017-04-09 19:34:00 +02:00
|
|
|
|
2017-06-05 21:33:01 +02:00
|
|
|
|
2017-07-10 05:09:57 +02:00
|
|
|
if (getSupportFragmentManager().getBackStackEntryCount() == 1) {
|
|
|
|
finish();
|
|
|
|
} else super.onBackPressed();
|
2016-08-02 15:06:02 +02:00
|
|
|
}
|
|
|
|
|
2018-04-06 23:19:45 +02:00
|
|
|
@Override
|
|
|
|
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
|
2018-04-07 19:32:02 +02:00
|
|
|
for (int i: grantResults){
|
|
|
|
if (i == PackageManager.PERMISSION_DENIED){
|
|
|
|
return;
|
2018-04-06 23:19:45 +02:00
|
|
|
}
|
2018-04-07 19:32:02 +02:00
|
|
|
}
|
|
|
|
switch (requestCode) {
|
|
|
|
case PermissionHelper.DOWNLOADS_REQUEST_CODE:
|
|
|
|
NavigationHelper.openDownloads(this);
|
|
|
|
break;
|
|
|
|
case PermissionHelper.DOWNLOAD_DIALOG_REQUEST_CODE:
|
|
|
|
Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.fragment_holder);
|
|
|
|
if (fragment instanceof VideoDetailFragment) {
|
|
|
|
((VideoDetailFragment) fragment).openDownloadDialog();
|
|
|
|
}
|
|
|
|
break;
|
2018-04-06 23:19:45 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-03 12:03:55 +01:00
|
|
|
/**
|
|
|
|
* Implement the following diagram behavior for the up button:
|
|
|
|
* <pre>
|
|
|
|
* +---------------+
|
|
|
|
* | Main Screen +----+
|
|
|
|
* +-------+-------+ |
|
|
|
|
* | |
|
|
|
|
* ▲ Up | Search Button
|
|
|
|
* | |
|
|
|
|
* +----+-----+ |
|
|
|
|
* +------------+ Search |◄-----+
|
|
|
|
* | +----+-----+
|
|
|
|
* | Open |
|
|
|
|
* | something ▲ Up
|
|
|
|
* | |
|
|
|
|
* | +------------+-------------+
|
|
|
|
* | | |
|
|
|
|
* | | Video <-> Channel |
|
|
|
|
* +---►| Channel <-> Playlist |
|
|
|
|
* | Video <-> .... |
|
|
|
|
* | |
|
|
|
|
* +--------------------------+
|
|
|
|
* </pre>
|
|
|
|
*/
|
2018-01-30 08:01:57 +01:00
|
|
|
private void onHomeButtonPressed() {
|
2018-02-03 12:03:55 +01:00
|
|
|
// If search fragment wasn't found in the backstack...
|
|
|
|
if (!NavigationHelper.tryGotoSearchFragment(getSupportFragmentManager())) {
|
|
|
|
// ...go to the main fragment
|
|
|
|
NavigationHelper.gotoMainFragment(getSupportFragmentManager());
|
|
|
|
}
|
2018-01-30 08:01:57 +01:00
|
|
|
}
|
|
|
|
|
2017-04-09 19:34:00 +02:00
|
|
|
/*//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Menu
|
|
|
|
//////////////////////////////////////////////////////////////////////////*/
|
|
|
|
|
2016-12-07 22:11:39 +01:00
|
|
|
@Override
|
2016-08-02 15:06:02 +02:00
|
|
|
public boolean onCreateOptionsMenu(Menu menu) {
|
2017-04-26 21:32:04 +02:00
|
|
|
if (DEBUG) Log.d(TAG, "onCreateOptionsMenu() called with: menu = [" + menu + "]");
|
2016-08-02 15:06:02 +02:00
|
|
|
super.onCreateOptionsMenu(menu);
|
2017-04-26 21:32:04 +02:00
|
|
|
|
|
|
|
Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.fragment_holder);
|
|
|
|
if (!(fragment instanceof VideoDetailFragment)) {
|
|
|
|
findViewById(R.id.toolbar).findViewById(R.id.toolbar_spinner).setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!(fragment instanceof SearchFragment)) {
|
|
|
|
findViewById(R.id.toolbar).findViewById(R.id.toolbar_search_container).setVisibility(View.GONE);
|
|
|
|
}
|
|
|
|
|
|
|
|
ActionBar actionBar = getSupportActionBar();
|
|
|
|
if (actionBar != null) {
|
|
|
|
actionBar.setDisplayHomeAsUpEnabled(false);
|
|
|
|
}
|
2018-01-30 08:01:57 +01:00
|
|
|
|
|
|
|
updateDrawerNavigation();
|
|
|
|
|
2016-08-02 15:06:02 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
2017-04-26 21:32:04 +02:00
|
|
|
if (DEBUG) Log.d(TAG, "onOptionsItemSelected() called with: item = [" + item + "]");
|
2016-08-02 15:06:02 +02:00
|
|
|
int id = item.getItemId();
|
|
|
|
|
2017-02-15 15:21:36 +01:00
|
|
|
switch (id) {
|
2017-09-03 08:04:18 +02:00
|
|
|
case android.R.id.home:
|
2018-01-30 08:01:57 +01:00
|
|
|
onHomeButtonPressed();
|
2016-08-02 15:06:02 +02:00
|
|
|
return true;
|
|
|
|
default:
|
2017-01-19 19:38:33 +01:00
|
|
|
return super.onOptionsItemSelected(item);
|
2016-08-02 15:06:02 +02:00
|
|
|
}
|
2016-08-02 01:26:12 +02:00
|
|
|
}
|
2017-04-09 19:34:00 +02:00
|
|
|
|
|
|
|
/*//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Init
|
|
|
|
//////////////////////////////////////////////////////////////////////////*/
|
|
|
|
|
|
|
|
private void initFragments() {
|
2017-09-03 08:04:18 +02:00
|
|
|
if (DEBUG) Log.d(TAG, "initFragments() called");
|
|
|
|
StateSaver.clearStateFiles();
|
2017-07-10 05:09:57 +02:00
|
|
|
if (getIntent() != null && getIntent().hasExtra(Constants.KEY_LINK_TYPE)) {
|
2017-04-09 19:34:00 +02:00
|
|
|
handleIntent(getIntent());
|
2017-07-10 05:09:57 +02:00
|
|
|
} else NavigationHelper.gotoMainFragment(getSupportFragmentManager());
|
2017-04-09 19:34:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/*//////////////////////////////////////////////////////////////////////////
|
|
|
|
// Utils
|
|
|
|
//////////////////////////////////////////////////////////////////////////*/
|
|
|
|
|
2018-01-30 08:01:57 +01:00
|
|
|
private void updateDrawerNavigation() {
|
|
|
|
if (getSupportActionBar() == null) return;
|
|
|
|
|
|
|
|
final Toolbar toolbar = findViewById(R.id.toolbar);
|
|
|
|
final DrawerLayout drawer = findViewById(R.id.drawer_layout);
|
|
|
|
|
|
|
|
final Fragment fragment = getSupportFragmentManager().findFragmentById(R.id.fragment_holder);
|
|
|
|
if (fragment instanceof MainFragment) {
|
|
|
|
getSupportActionBar().setDisplayHomeAsUpEnabled(false);
|
|
|
|
if (toggle != null) {
|
|
|
|
toggle.syncState();
|
|
|
|
toolbar.setNavigationOnClickListener(v -> drawer.openDrawer(GravityCompat.START));
|
|
|
|
drawer.setDrawerLockMode(DrawerLayout.LOCK_MODE_UNDEFINED);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
drawer.setDrawerLockMode(DrawerLayout.LOCK_MODE_LOCKED_CLOSED);
|
|
|
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
|
|
|
toolbar.setNavigationOnClickListener(v -> onHomeButtonPressed());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-04-09 19:34:00 +02:00
|
|
|
private void handleIntent(Intent intent) {
|
2018-07-08 17:46:21 +02:00
|
|
|
try {
|
|
|
|
if (DEBUG) Log.d(TAG, "handleIntent() called with: intent = [" + intent + "]");
|
|
|
|
|
|
|
|
if (intent.hasExtra(Constants.KEY_LINK_TYPE)) {
|
|
|
|
String url = intent.getStringExtra(Constants.KEY_URL);
|
|
|
|
int serviceId = intent.getIntExtra(Constants.KEY_SERVICE_ID, 0);
|
|
|
|
String title = intent.getStringExtra(Constants.KEY_TITLE);
|
|
|
|
switch (((StreamingService.LinkType) intent.getSerializableExtra(Constants.KEY_LINK_TYPE))) {
|
|
|
|
case STREAM:
|
|
|
|
boolean autoPlay = intent.getBooleanExtra(VideoDetailFragment.AUTO_PLAY, false);
|
|
|
|
NavigationHelper.openVideoDetailFragment(getSupportFragmentManager(), serviceId, url, title, autoPlay);
|
|
|
|
break;
|
|
|
|
case CHANNEL:
|
|
|
|
NavigationHelper.openChannelFragment(getSupportFragmentManager(),
|
|
|
|
serviceId,
|
2018-07-10 16:26:42 +02:00
|
|
|
url,
|
2018-07-08 17:46:21 +02:00
|
|
|
title);
|
|
|
|
break;
|
|
|
|
case PLAYLIST:
|
|
|
|
NavigationHelper.openPlaylistFragment(getSupportFragmentManager(),
|
|
|
|
serviceId,
|
2018-07-10 16:26:42 +02:00
|
|
|
url,
|
2018-07-08 17:46:21 +02:00
|
|
|
title);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
} else if (intent.hasExtra(Constants.KEY_OPEN_SEARCH)) {
|
|
|
|
String searchString = intent.getStringExtra(Constants.KEY_SEARCH_STRING);
|
|
|
|
if (searchString == null) searchString = "";
|
|
|
|
int serviceId = intent.getIntExtra(Constants.KEY_SERVICE_ID, 0);
|
|
|
|
NavigationHelper.openSearchFragment(
|
|
|
|
getSupportFragmentManager(),
|
|
|
|
serviceId,
|
2018-07-10 16:26:42 +02:00
|
|
|
searchString);
|
2018-07-08 17:46:21 +02:00
|
|
|
|
|
|
|
} else {
|
|
|
|
NavigationHelper.gotoMainFragment(getSupportFragmentManager());
|
2017-04-09 19:34:00 +02:00
|
|
|
}
|
2018-07-08 17:46:21 +02:00
|
|
|
} catch (Exception e) {
|
|
|
|
ErrorActivity.reportUiError(this, e);
|
2017-04-09 19:34:00 +02:00
|
|
|
}
|
|
|
|
}
|
2016-08-02 01:26:12 +02:00
|
|
|
}
|