2016-08-22 21:18:28 +00:00
|
|
|
package com.topjohnwu.magisk;
|
2016-08-21 14:42:50 +00:00
|
|
|
|
|
|
|
import android.os.Bundle;
|
|
|
|
import android.support.annotation.Nullable;
|
|
|
|
import android.support.design.widget.Snackbar;
|
|
|
|
import android.support.v4.app.Fragment;
|
|
|
|
import android.support.v7.widget.RecyclerView;
|
|
|
|
import android.view.LayoutInflater;
|
|
|
|
import android.view.View;
|
|
|
|
import android.view.ViewGroup;
|
2016-08-22 10:30:13 +00:00
|
|
|
import android.widget.CheckBox;
|
2016-08-21 14:42:50 +00:00
|
|
|
|
2016-08-22 21:18:28 +00:00
|
|
|
import com.topjohnwu.magisk.module.Module;
|
2016-08-21 14:42:50 +00:00
|
|
|
import com.topjohnwu.magisk.rv.ItemClickListener;
|
|
|
|
import com.topjohnwu.magisk.rv.ModulesAdapter;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import butterknife.BindView;
|
|
|
|
import butterknife.ButterKnife;
|
|
|
|
|
|
|
|
public abstract class BaseModuleFragment extends Fragment {
|
|
|
|
|
|
|
|
@BindView(R.id.recyclerView) RecyclerView recyclerView;
|
|
|
|
|
|
|
|
@Nullable
|
|
|
|
@Override
|
|
|
|
public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
|
|
|
View view = inflater.inflate(R.layout.single_module_fragment, container, false);
|
|
|
|
ButterKnife.bind(this, view);
|
|
|
|
|
2016-08-22 10:30:13 +00:00
|
|
|
recyclerView.setAdapter(new ModulesAdapter(listModules(), new ItemClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(View view, int position) {
|
2016-08-23 10:39:36 +00:00
|
|
|
// On Checkbox change listener
|
2016-08-22 10:30:13 +00:00
|
|
|
CheckBox chbox = (CheckBox) view;
|
|
|
|
|
|
|
|
if (!chbox.isChecked()) {
|
|
|
|
listModules().get(position).createDisableFile();
|
|
|
|
Snackbar.make(view, R.string.disable_file_created, Snackbar.LENGTH_SHORT).show();
|
|
|
|
} else {
|
|
|
|
listModules().get(position).removeDisableFile();
|
|
|
|
Snackbar.make(view, R.string.disable_file_removed, Snackbar.LENGTH_SHORT).show();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, new ItemClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(View view, int position) {
|
2016-08-23 10:39:36 +00:00
|
|
|
// On delete button click listener
|
|
|
|
|
2016-08-22 10:30:13 +00:00
|
|
|
listModules().get(position).createRemoveFile();
|
|
|
|
Snackbar.make(view, R.string.remove_file_created, Snackbar.LENGTH_SHORT).show();
|
|
|
|
}
|
2016-08-23 10:39:36 +00:00
|
|
|
}, new ItemClickListener() {
|
|
|
|
@Override
|
|
|
|
public void onItemClick(View view, int position) {
|
|
|
|
// On undelete button click listener
|
|
|
|
|
|
|
|
listModules().get(position).deleteRemoveFile();
|
|
|
|
Snackbar.make(view, R.string.remove_file_deleted, Snackbar.LENGTH_SHORT).show();
|
|
|
|
}
|
2016-08-22 10:30:13 +00:00
|
|
|
}));
|
2016-08-21 14:42:50 +00:00
|
|
|
return view;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected abstract List<Module> listModules();
|
|
|
|
}
|