NewPipe/app/src/main/java/org/schabi/newpipe/settings/SettingsActivity.java

105 lines
3.8 KiB
Java
Raw Normal View History

2016-08-02 21:17:54 +02:00
package org.schabi.newpipe.settings;
2015-09-04 02:15:03 +02:00
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
2019-10-04 14:59:08 +02:00
import androidx.appcompat.app.ActionBar;
import androidx.appcompat.app.AppCompatActivity;
import androidx.fragment.app.Fragment;
2019-10-04 14:59:08 +02:00
import androidx.preference.Preference;
import androidx.preference.PreferenceFragmentCompat;
2015-09-04 02:15:03 +02:00
2016-08-02 21:17:54 +02:00
import org.schabi.newpipe.R;
2020-10-31 11:16:46 +01:00
import org.schabi.newpipe.databinding.SettingsLayoutBinding;
2020-07-21 00:43:49 +02:00
import org.schabi.newpipe.util.DeviceUtils;
2017-02-27 12:55:15 +01:00
import org.schabi.newpipe.util.ThemeHelper;
import org.schabi.newpipe.views.FocusOverlayView;
2016-12-29 20:19:39 +01:00
import static org.schabi.newpipe.util.Localization.assureCorrectAppLanguage;
/*
2015-09-04 02:15:03 +02:00
* Created by Christian Schabesberger on 31.08.15.
*
* Copyright (C) Christian Schabesberger 2015 <chris.schabesberger@mailbox.org>
* SettingsActivity.java is part of NewPipe.
*
* 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.
*
* 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.
*
* You should have received a copy of the GNU General Public License
* along with NewPipe. If not, see <http://www.gnu.org/licenses/>.
*/
public class SettingsActivity extends AppCompatActivity
implements BasePreferenceFragment.OnPreferenceStartFragmentCallback {
2015-09-04 02:15:03 +02:00
@Override
protected void onCreate(final Bundle savedInstanceBundle) {
setTheme(ThemeHelper.getSettingsThemeStyle(this));
assureCorrectAppLanguage(this);
2015-09-04 02:15:03 +02:00
super.onCreate(savedInstanceBundle);
2020-10-31 11:16:46 +01:00
final SettingsLayoutBinding settingsLayoutBinding =
SettingsLayoutBinding.inflate(getLayoutInflater());
setContentView(settingsLayoutBinding.getRoot());
setSupportActionBar(settingsLayoutBinding.settingsToolbarLayout.toolbar);
2015-09-04 02:15:03 +02:00
if (savedInstanceBundle == null) {
getSupportFragmentManager().beginTransaction()
.replace(R.id.settings_fragment_holder, new MainSettingsFragment())
.commit();
}
2020-07-21 00:43:49 +02:00
if (DeviceUtils.isTv(this)) {
FocusOverlayView.setupFocusObserver(this);
}
}
@Override
public boolean onCreateOptionsMenu(final Menu menu) {
2020-08-16 10:24:58 +02:00
final ActionBar actionBar = getSupportActionBar();
if (actionBar != null) {
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setDisplayShowTitleEnabled(true);
}
2015-09-04 02:15:03 +02:00
return super.onCreateOptionsMenu(menu);
2015-09-04 02:15:03 +02:00
}
@Override
public boolean onOptionsItemSelected(final MenuItem item) {
2020-08-16 10:24:58 +02:00
final int id = item.getItemId();
2017-05-14 16:10:00 +02:00
if (id == android.R.id.home) {
if (getSupportFragmentManager().getBackStackEntryCount() == 0) {
finish();
} else {
getSupportFragmentManager().popBackStack();
}
2015-09-04 02:15:03 +02:00
}
return super.onOptionsItemSelected(item);
2015-09-04 02:15:03 +02:00
}
@Override
public boolean onPreferenceStartFragment(final PreferenceFragmentCompat caller,
final Preference preference) {
2020-08-16 10:24:58 +02:00
final Fragment fragment = Fragment
.instantiate(this, preference.getFragment(), preference.getExtras());
getSupportFragmentManager().beginTransaction()
.setCustomAnimations(R.animator.custom_fade_in, R.animator.custom_fade_out,
R.animator.custom_fade_in, R.animator.custom_fade_out)
.replace(R.id.settings_fragment_holder, fragment)
.addToBackStack(null)
.commit();
return true;
}
2015-09-04 02:15:03 +02:00
}