2015-09-04 02:15:03 +02:00
|
|
|
package org.schabi.newpipe;
|
|
|
|
|
2016-01-01 23:06:16 +01:00
|
|
|
import android.app.Activity;
|
2016-05-26 11:59:12 -03:00
|
|
|
import android.content.ClipData;
|
2016-01-05 23:16:50 +03:00
|
|
|
import android.content.Context;
|
2016-01-01 23:06:16 +01:00
|
|
|
import android.content.Intent;
|
2015-09-04 02:15:03 +02:00
|
|
|
import android.content.res.Configuration;
|
2016-05-26 11:59:12 -03:00
|
|
|
import android.net.Uri;
|
|
|
|
import android.os.Build;
|
2015-09-04 02:15:03 +02:00
|
|
|
import android.os.Bundle;
|
|
|
|
import android.preference.PreferenceActivity;
|
|
|
|
import android.support.annotation.LayoutRes;
|
2015-11-29 13:06:27 +01:00
|
|
|
import android.support.annotation.NonNull;
|
2015-09-04 02:15:03 +02:00
|
|
|
import android.support.v7.app.ActionBar;
|
|
|
|
import android.support.v7.app.AppCompatDelegate;
|
|
|
|
import android.view.MenuInflater;
|
|
|
|
import android.view.MenuItem;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
|
|
|
|
2016-05-26 11:59:12 -03:00
|
|
|
import com.nononsenseapps.filepicker.FilePickerActivity;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
2016-01-01 22:16:41 +01:00
|
|
|
import info.guardianproject.netcipher.proxy.OrbotHelper;
|
|
|
|
|
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/>.
|
|
|
|
*/
|
|
|
|
|
2016-01-03 19:55:04 +01:00
|
|
|
public class SettingsActivity extends PreferenceActivity {
|
2015-09-04 02:15:03 +02:00
|
|
|
|
2016-06-15 07:19:26 -03:00
|
|
|
public static final int REQUEST_INSTALL_ORBOT = 0x1234;
|
|
|
|
private AppCompatDelegate mDelegate = null;
|
2015-09-04 02:15:03 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onCreate(Bundle savedInstanceBundle) {
|
|
|
|
getDelegate().installViewFactory();
|
|
|
|
getDelegate().onCreate(savedInstanceBundle);
|
|
|
|
super.onCreate(savedInstanceBundle);
|
|
|
|
|
2016-05-25 23:51:22 +02:00
|
|
|
ActionBar actionBar = getSupportActionBar();
|
|
|
|
actionBar.setDisplayHomeAsUpEnabled(true);
|
|
|
|
actionBar.setTitle(R.string.settings_title);
|
|
|
|
actionBar.setDisplayShowTitleEnabled(true);
|
2015-09-04 02:15:03 +02:00
|
|
|
|
|
|
|
getFragmentManager().beginTransaction()
|
|
|
|
.replace(android.R.id.content, new SettingsFragment())
|
|
|
|
.commit();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-01-01 23:06:16 +01:00
|
|
|
@Override
|
|
|
|
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
2016-06-14 06:13:06 -03:00
|
|
|
|
|
|
|
if (requestCode == 233 && resultCode == Activity.RESULT_OK) {
|
|
|
|
if (data.getBooleanExtra(FilePickerActivity.EXTRA_ALLOW_MULTIPLE, false)) {
|
|
|
|
// For JellyBean and above
|
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {
|
|
|
|
ClipData clip = data.getClipData();
|
|
|
|
|
|
|
|
if (clip != null) {
|
|
|
|
for (int i = 0; i < clip.getItemCount(); i++) {
|
|
|
|
Uri uri = clip.getItemAt(i).getUri();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// For Ice Cream Sandwich
|
|
|
|
} else {
|
|
|
|
ArrayList<String> paths = data.getStringArrayListExtra
|
|
|
|
(FilePickerActivity.EXTRA_PATHS);
|
|
|
|
|
|
|
|
if (paths != null) {
|
|
|
|
for (String path: paths) {
|
|
|
|
Uri uri = Uri.parse(path);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
Uri uri = data.getData();
|
|
|
|
}
|
|
|
|
}
|
2016-06-15 07:19:26 -03:00
|
|
|
else if(requestCode == REQUEST_INSTALL_ORBOT)
|
|
|
|
{
|
|
|
|
// try to start tor regardless of resultCode since clicking back after
|
|
|
|
// installing the app does not necessarily return RESULT_OK
|
|
|
|
App.configureTor(requestCode == REQUEST_INSTALL_ORBOT
|
|
|
|
&& OrbotHelper.requestStartTor(this));
|
2016-06-14 06:13:06 -03:00
|
|
|
|
2016-06-15 07:19:26 -03:00
|
|
|
}
|
2016-06-14 06:13:06 -03:00
|
|
|
super.onActivityResult(requestCode, resultCode, data);
|
2016-01-01 23:06:16 +01:00
|
|
|
}
|
|
|
|
|
2015-09-04 02:15:03 +02:00
|
|
|
@Override
|
|
|
|
protected void onPostCreate(Bundle savedInstanceState) {
|
|
|
|
super.onPostCreate(savedInstanceState);
|
|
|
|
getDelegate().onPostCreate(savedInstanceState);
|
|
|
|
}
|
|
|
|
|
2015-11-29 13:06:27 +01:00
|
|
|
private ActionBar getSupportActionBar() {
|
2015-09-04 02:15:03 +02:00
|
|
|
return getDelegate().getSupportActionBar();
|
|
|
|
}
|
|
|
|
|
2015-11-29 13:06:27 +01:00
|
|
|
@NonNull
|
2015-09-04 02:15:03 +02:00
|
|
|
@Override
|
|
|
|
public MenuInflater getMenuInflater() {
|
|
|
|
return getDelegate().getMenuInflater();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setContentView(@LayoutRes int layoutResID) {
|
|
|
|
getDelegate().setContentView(layoutResID);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setContentView(View view) {
|
|
|
|
getDelegate().setContentView(view);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setContentView(View view, ViewGroup.LayoutParams params) {
|
|
|
|
getDelegate().setContentView(view, params);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void addContentView(View view, ViewGroup.LayoutParams params) {
|
|
|
|
getDelegate().addContentView(view, params);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onPostResume() {
|
|
|
|
super.onPostResume();
|
|
|
|
getDelegate().onPostResume();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onTitleChanged(CharSequence title, int color) {
|
|
|
|
super.onTitleChanged(title, color);
|
|
|
|
getDelegate().setTitle(title);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onConfigurationChanged(Configuration newConfig) {
|
|
|
|
super.onConfigurationChanged(newConfig);
|
|
|
|
getDelegate().onConfigurationChanged(newConfig);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onStop() {
|
|
|
|
super.onStop();
|
|
|
|
getDelegate().onStop();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void onDestroy() {
|
|
|
|
super.onDestroy();
|
|
|
|
getDelegate().onDestroy();
|
|
|
|
}
|
|
|
|
|
|
|
|
public void invalidateOptionsMenu() {
|
|
|
|
getDelegate().invalidateOptionsMenu();
|
|
|
|
}
|
|
|
|
|
|
|
|
private AppCompatDelegate getDelegate() {
|
|
|
|
if (mDelegate == null) {
|
|
|
|
mDelegate = AppCompatDelegate.create(this, null);
|
|
|
|
}
|
|
|
|
return mDelegate;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onOptionsItemSelected(MenuItem item) {
|
|
|
|
int id = item.getItemId();
|
|
|
|
if(id == android.R.id.home) {
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
2016-01-05 21:11:15 +01:00
|
|
|
|
|
|
|
public static void initSettings(Context context) {
|
2016-01-07 14:22:55 +01:00
|
|
|
NewPipeSettings.initSettings(context);
|
2016-01-05 21:11:15 +01:00
|
|
|
}
|
2015-09-04 02:15:03 +02:00
|
|
|
}
|