2016-10-22 16:05:34 +00:00
|
|
|
package com.topjohnwu.magisk;
|
|
|
|
|
2016-11-07 13:06:18 +00:00
|
|
|
import android.app.Fragment;
|
2016-10-22 16:05:34 +00:00
|
|
|
import android.content.pm.PackageManager;
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.support.annotation.Nullable;
|
2016-11-11 13:45:03 +00:00
|
|
|
import android.support.v4.view.MenuItemCompat;
|
2016-11-07 13:06:18 +00:00
|
|
|
import android.support.v4.widget.SwipeRefreshLayout;
|
|
|
|
import android.support.v7.widget.RecyclerView;
|
2017-01-08 15:17:01 +00:00
|
|
|
import android.text.TextUtils;
|
2016-10-22 16:05:34 +00:00
|
|
|
import android.view.LayoutInflater;
|
2016-11-11 13:45:03 +00:00
|
|
|
import android.view.Menu;
|
|
|
|
import android.view.MenuInflater;
|
2016-10-22 16:05:34 +00:00
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2016-11-11 13:45:03 +00:00
|
|
|
import android.widget.SearchView;
|
2016-10-22 16:05:34 +00:00
|
|
|
|
2016-11-07 16:09:08 +00:00
|
|
|
import com.topjohnwu.magisk.adapters.ApplicationAdapter;
|
2016-11-07 13:06:18 +00:00
|
|
|
import com.topjohnwu.magisk.utils.Async;
|
2017-01-06 16:29:53 +00:00
|
|
|
import com.topjohnwu.magisk.utils.CallbackHandler;
|
|
|
|
import com.topjohnwu.magisk.utils.Logger;
|
2016-10-22 16:05:34 +00:00
|
|
|
|
2017-01-06 16:29:53 +00:00
|
|
|
import java.util.Arrays;
|
2016-10-22 16:05:34 +00:00
|
|
|
import java.util.List;
|
|
|
|
|
2016-11-07 13:06:18 +00:00
|
|
|
import butterknife.BindView;
|
|
|
|
import butterknife.ButterKnife;
|
2016-10-22 18:04:58 +00:00
|
|
|
|
2017-01-06 16:29:53 +00:00
|
|
|
public class MagiskHideFragment extends Fragment implements CallbackHandler.EventListener {
|
2016-10-22 16:05:34 +00:00
|
|
|
|
2016-11-07 13:06:18 +00:00
|
|
|
@BindView(R.id.swipeRefreshLayout) SwipeRefreshLayout mSwipeRefreshLayout;
|
|
|
|
@BindView(R.id.recyclerView) RecyclerView recyclerView;
|
2016-10-22 16:05:34 +00:00
|
|
|
|
2017-01-06 16:29:53 +00:00
|
|
|
// Don't show in list...
|
2017-01-08 13:41:19 +00:00
|
|
|
public static final List<String> BLACKLIST = Arrays.asList(
|
2017-01-06 16:29:53 +00:00
|
|
|
"android",
|
|
|
|
"com.topjohnwu.magisk",
|
|
|
|
"com.google.android.gms",
|
|
|
|
"com.google.android.apps.walletnfcrel",
|
|
|
|
"com.nianticlabs.pokemongo"
|
|
|
|
);
|
|
|
|
public static CallbackHandler.Event packageLoadDone = new CallbackHandler.Event();
|
|
|
|
|
2017-01-08 13:47:56 +00:00
|
|
|
private ApplicationAdapter appAdapter;
|
2016-11-11 13:45:03 +00:00
|
|
|
|
|
|
|
private SearchView.OnQueryTextListener searchListener;
|
2017-01-08 15:17:01 +00:00
|
|
|
private String lastFilter;
|
2016-10-22 16:05:34 +00:00
|
|
|
|
2017-01-11 21:22:55 +00:00
|
|
|
@Override
|
|
|
|
public void onCreate(@Nullable Bundle savedInstanceState) {
|
|
|
|
super.onCreate(savedInstanceState);
|
|
|
|
setHasOptionsMenu(true);
|
|
|
|
}
|
|
|
|
|
2016-11-07 13:06:18 +00:00
|
|
|
@Nullable
|
2016-10-22 16:05:34 +00:00
|
|
|
@Override
|
2016-11-07 13:06:18 +00:00
|
|
|
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
2017-01-08 13:45:08 +00:00
|
|
|
View view = inflater.inflate(R.layout.magisk_hide_fragment, container, false);
|
|
|
|
ButterKnife.bind(this, view);
|
2016-10-22 16:05:34 +00:00
|
|
|
|
2017-01-08 13:47:56 +00:00
|
|
|
PackageManager packageManager = getActivity().getPackageManager();
|
2016-11-07 13:06:18 +00:00
|
|
|
|
|
|
|
mSwipeRefreshLayout.setRefreshing(true);
|
2017-01-08 16:59:35 +00:00
|
|
|
mSwipeRefreshLayout.setOnRefreshListener(() -> new Async.LoadApps(packageManager).exec());
|
2016-10-22 16:05:34 +00:00
|
|
|
|
2017-01-08 13:47:56 +00:00
|
|
|
appAdapter = new ApplicationAdapter(packageManager);
|
2017-01-06 16:29:53 +00:00
|
|
|
recyclerView.setAdapter(appAdapter);
|
2016-11-11 13:45:03 +00:00
|
|
|
|
|
|
|
searchListener = new SearchView.OnQueryTextListener() {
|
|
|
|
@Override
|
|
|
|
public boolean onQueryTextSubmit(String query) {
|
2017-01-08 15:17:01 +00:00
|
|
|
lastFilter = query;
|
2017-01-08 13:41:19 +00:00
|
|
|
appAdapter.filter(query);
|
2016-11-11 13:45:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean onQueryTextChange(String newText) {
|
2017-01-08 15:17:01 +00:00
|
|
|
lastFilter = newText;
|
2017-01-08 13:41:19 +00:00
|
|
|
appAdapter.filter(newText);
|
2016-11-11 13:45:03 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2017-01-08 13:45:08 +00:00
|
|
|
return view;
|
2016-10-22 16:05:34 +00:00
|
|
|
}
|
|
|
|
|
2016-11-11 13:45:03 +00:00
|
|
|
@Override
|
|
|
|
public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) {
|
|
|
|
inflater.inflate(R.menu.menu_magiskhide, menu);
|
|
|
|
SearchView search = (SearchView) MenuItemCompat.getActionView(menu.findItem(R.id.app_search));
|
|
|
|
search.setOnQueryTextListener(searchListener);
|
|
|
|
}
|
|
|
|
|
2016-10-22 16:05:34 +00:00
|
|
|
@Override
|
|
|
|
public void onResume() {
|
|
|
|
super.onResume();
|
2016-12-24 19:05:22 +00:00
|
|
|
getActivity().setTitle(R.string.magiskhide);
|
2017-01-06 16:29:53 +00:00
|
|
|
CallbackHandler.register(packageLoadDone, this);
|
|
|
|
if (packageLoadDone.isTriggered) {
|
|
|
|
onTrigger(packageLoadDone);
|
|
|
|
}
|
2016-10-22 16:05:34 +00:00
|
|
|
}
|
|
|
|
|
2017-01-06 16:29:53 +00:00
|
|
|
@Override
|
|
|
|
public void onPause() {
|
|
|
|
super.onPause();
|
|
|
|
CallbackHandler.unRegister(packageLoadDone, this);
|
|
|
|
}
|
2016-10-22 16:05:34 +00:00
|
|
|
|
2017-01-06 16:29:53 +00:00
|
|
|
@Override
|
|
|
|
public void onTrigger(CallbackHandler.Event event) {
|
|
|
|
Logger.dev("MagiskHideFragment: UI refresh");
|
2017-01-08 13:41:19 +00:00
|
|
|
Async.LoadApps.Result result = (Async.LoadApps.Result) event.getResult();
|
|
|
|
appAdapter.setLists(result.listApps, result.hideList);
|
2016-11-07 13:06:18 +00:00
|
|
|
mSwipeRefreshLayout.setRefreshing(false);
|
2017-01-08 15:17:01 +00:00
|
|
|
if (!TextUtils.isEmpty(lastFilter)) {
|
|
|
|
appAdapter.filter(lastFilter);
|
|
|
|
}
|
2016-10-22 16:05:34 +00:00
|
|
|
}
|
2017-01-08 13:41:19 +00:00
|
|
|
}
|