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

91 lines
3.1 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
2016-01-05 21:16:50 +01:00
import android.content.Context;
2015-09-04 02:15:03 +02:00
import android.os.Bundle;
import android.support.v4.app.Fragment;
2015-09-04 02:15:03 +02:00
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.support.v7.preference.Preference;
import android.support.v7.preference.PreferenceFragmentCompat;
import android.support.v7.widget.Toolbar;
import android.view.Menu;
2015-09-04 02:15:03 +02:00
import android.view.MenuItem;
2016-08-02 21:17:54 +02:00
import org.schabi.newpipe.R;
2017-02-27 12:55:15 +01:00
import org.schabi.newpipe.util.ThemeHelper;
2016-12-29 20:19:39 +01:00
/*
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 {
2017-02-27 12:55:15 +01:00
public static void initSettings(Context context) {
NewPipeSettings.initSettings(context);
}
2015-09-04 02:15:03 +02:00
@Override
protected void onCreate(Bundle savedInstanceBundle) {
ThemeHelper.setTheme(this);
2015-09-04 02:15:03 +02:00
super.onCreate(savedInstanceBundle);
setContentView(R.layout.settings_layout);
Toolbar toolbar = findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
2015-09-04 02:15:03 +02:00
if (savedInstanceBundle == null) {
getSupportFragmentManager().beginTransaction()
.replace(R.id.fragment_holder, new MainSettingsFragment())
.commit();
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
2016-05-25 23:51:22 +02:00
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(MenuItem item) {
int id = item.getItemId();
2017-05-14 16:10:00 +02:00
if (id == android.R.id.home) {
2015-09-04 02:15:03 +02:00
finish();
}
return true;
}
@Override
public boolean onPreferenceStartFragment(PreferenceFragmentCompat caller, Preference preference) {
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.fragment_holder, fragment)
.addToBackStack(null)
.commit();
return true;
}
2015-09-04 02:15:03 +02:00
}