use of com.moro.mtweaks.views.recyclerview.TitleView in project MTweaks-KernelAdiutorMOD by morogoku.
the class CPUHotplugFragment method intelliPlugInit.
private void intelliPlugInit(List<RecyclerViewItem> items) {
List<RecyclerViewItem> intelliplug = new ArrayList<>();
TitleView title = new TitleView();
title.setText(getString(R.string.intelliplug));
if (IntelliPlug.hasIntelliPlugEnable()) {
SwitchView enable = new SwitchView();
enable.setTitle(getString(R.string.intelliplug));
enable.setSummary(getString(R.string.intelliplug_summary));
enable.setChecked(IntelliPlug.isIntelliPlugEnabled());
enable.addOnSwitchListener(new SwitchView.OnSwitchListener() {
@Override
public void onChanged(SwitchView switchView, boolean isChecked) {
IntelliPlug.enableIntelliPlug(isChecked, getActivity());
}
});
intelliplug.add(enable);
mEnableViews.add(enable);
}
if (IntelliPlug.hasIntelliPlugProfile()) {
SelectView profile = new SelectView();
profile.setTitle(getString(R.string.profile));
profile.setSummary(getString(R.string.cpu_hotplug_profile_summary));
profile.setItems(IntelliPlug.getIntelliPlugProfileMenu(getActivity()));
profile.setItem(IntelliPlug.getIntelliPlugProfile());
profile.setOnItemSelected(new SelectView.OnItemSelected() {
@Override
public void onItemSelected(SelectView selectView, int position, String item) {
IntelliPlug.setIntelliPlugProfile(position, getActivity());
}
});
intelliplug.add(profile);
}
if (IntelliPlug.hasIntelliPlugEco()) {
SwitchView eco = new SwitchView();
eco.setTitle(getString(R.string.eco_mode));
eco.setSummary(getString(R.string.eco_mode_summary));
eco.setChecked(IntelliPlug.isIntelliPlugEcoEnabled());
eco.addOnSwitchListener(new SwitchView.OnSwitchListener() {
@Override
public void onChanged(SwitchView switchView, boolean isChecked) {
IntelliPlug.enableIntelliPlugEco(isChecked, getActivity());
}
});
intelliplug.add(eco);
}
if (IntelliPlug.hasIntelliPlugTouchBoost()) {
SwitchView touchBoost = new SwitchView();
touchBoost.setTitle(getString(R.string.touch_boost));
touchBoost.setSummary(getString(R.string.touch_boost_summary));
touchBoost.setChecked(IntelliPlug.isIntelliPlugTouchBoostEnabled());
touchBoost.addOnSwitchListener(new SwitchView.OnSwitchListener() {
@Override
public void onChanged(SwitchView switchView, boolean isChecked) {
IntelliPlug.enableIntelliPlugTouchBoost(isChecked, getActivity());
}
});
intelliplug.add(touchBoost);
}
if (IntelliPlug.hasIntelliPlugHysteresis()) {
SeekBarView hysteresis = new SeekBarView();
hysteresis.setTitle(getString(R.string.hysteresis));
hysteresis.setSummary(getString(R.string.hysteresis_summary));
hysteresis.setMax(17);
hysteresis.setProgress(IntelliPlug.getIntelliPlugHysteresis());
hysteresis.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
IntelliPlug.setIntelliPlugHysteresis(position, getActivity());
}
});
intelliplug.add(hysteresis);
}
if (IntelliPlug.hasIntelliPlugThresold()) {
SeekBarView threshold = new SeekBarView();
threshold.setTitle(getString(R.string.cpu_threshold));
threshold.setSummary(getString(R.string.cpu_threshold_summary));
threshold.setMax(1000);
threshold.setProgress(IntelliPlug.getIntelliPlugThresold());
threshold.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
IntelliPlug.setIntelliPlugThresold(position, getActivity());
}
});
intelliplug.add(threshold);
}
if (IntelliPlug.hasIntelliPlugScreenOffMax() && CPUFreq.getFreqs() != null) {
List<String> list = new ArrayList<>();
list.add(getString(R.string.disabled));
list.addAll(CPUFreq.getAdjustedFreq(getActivity()));
SelectView maxScreenOffFreq = new SelectView();
maxScreenOffFreq.setTitle(getString(R.string.cpu_max_screen_off_freq));
maxScreenOffFreq.setSummary(getString(R.string.cpu_max_screen_off_freq_summary));
maxScreenOffFreq.setItems(list);
maxScreenOffFreq.setItem(IntelliPlug.getIntelliPlugScreenOffMax());
maxScreenOffFreq.setOnItemSelected(new SelectView.OnItemSelected() {
@Override
public void onItemSelected(SelectView selectView, int position, String item) {
IntelliPlug.setIntelliPlugScreenOffMax(position, getActivity());
}
});
intelliplug.add(maxScreenOffFreq);
}
if (IntelliPlug.hasIntelliPlugDebug()) {
SwitchView debug = new SwitchView();
debug.setTitle(getString(R.string.debug_mask));
debug.setSummary(getString(R.string.debug_mask_summary));
debug.setChecked(IntelliPlug.isIntelliPlugDebugEnabled());
debug.addOnSwitchListener(new SwitchView.OnSwitchListener() {
@Override
public void onChanged(SwitchView switchView, boolean isChecked) {
IntelliPlug.enableIntelliPlugDebug(isChecked, getActivity());
}
});
intelliplug.add(debug);
}
if (IntelliPlug.hasIntelliPlugSuspend()) {
SwitchView suspend = new SwitchView();
suspend.setTitle(getString(R.string.suspend));
suspend.setSummary(getString(R.string.suspend_summary));
suspend.setChecked(IntelliPlug.isIntelliPlugSuspendEnabled());
suspend.addOnSwitchListener(new SwitchView.OnSwitchListener() {
@Override
public void onChanged(SwitchView switchView, boolean isChecked) {
IntelliPlug.enableIntelliPlugSuspend(isChecked, getActivity());
}
});
intelliplug.add(suspend);
}
if (IntelliPlug.hasIntelliPlugCpusBoosted()) {
SeekBarView cpusBoosted = new SeekBarView();
cpusBoosted.setTitle(getString(R.string.cpus_boosted));
cpusBoosted.setSummary(getString(R.string.cpus_boosted_summary));
cpusBoosted.setMax(CPUFreq.getCpuCount());
cpusBoosted.setMin(1);
cpusBoosted.setProgress(IntelliPlug.getIntelliPlugCpusBoosted() - 1);
cpusBoosted.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
IntelliPlug.setIntelliPlugCpusBoosted(position + 1, getActivity());
}
});
intelliplug.add(cpusBoosted);
}
if (IntelliPlug.hasIntelliPlugMinCpusOnline()) {
SeekBarView minCpusOnline = new SeekBarView();
minCpusOnline.setTitle(getString(R.string.min_cpu_online));
minCpusOnline.setSummary(getString(R.string.min_cpu_online_summary));
minCpusOnline.setMax(CPUFreq.getCpuCount());
minCpusOnline.setMin(1);
minCpusOnline.setProgress(IntelliPlug.getIntelliPlugMinCpusOnline() - 1);
minCpusOnline.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
IntelliPlug.setIntelliPlugMinCpusOnline(position + 1, getActivity());
}
});
intelliplug.add(minCpusOnline);
}
if (IntelliPlug.hasIntelliPlugMaxCpusOnline()) {
SeekBarView maxCpusOnline = new SeekBarView();
maxCpusOnline.setTitle(getString(R.string.max_cpu_online));
maxCpusOnline.setSummary(getString(R.string.max_cpu_online_summary));
maxCpusOnline.setMax(CPUFreq.getCpuCount());
maxCpusOnline.setMin(1);
maxCpusOnline.setProgress(IntelliPlug.getIntelliPlugMaxCpusOnline() - 1);
maxCpusOnline.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
IntelliPlug.setIntelliPlugMaxCpusOnline(position + 1, getActivity());
}
});
intelliplug.add(maxCpusOnline);
}
if (IntelliPlug.hasIntelliPlugMaxCpusOnlineSusp()) {
SeekBarView maxCpusOnlineSusp = new SeekBarView();
maxCpusOnlineSusp.setTitle(getString(R.string.max_cpu_online_screen_off));
maxCpusOnlineSusp.setSummary(getString(R.string.max_cpu_online_screen_off_summary));
maxCpusOnlineSusp.setMax(CPUFreq.getCpuCount());
maxCpusOnlineSusp.setMin(1);
maxCpusOnlineSusp.setProgress(IntelliPlug.getIntelliPlugMaxCpusOnlineSusp() - 1);
maxCpusOnlineSusp.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
IntelliPlug.setIntelliPlugMaxCpusOnlineSusp(position + 1, getActivity());
}
});
intelliplug.add(maxCpusOnlineSusp);
}
if (IntelliPlug.hasIntelliPlugSuspendDeferTime()) {
SeekBarView suspendDeferTime = new SeekBarView();
suspendDeferTime.setTitle(getString(R.string.suspend_defer_time));
suspendDeferTime.setUnit(getString(R.string.ms));
suspendDeferTime.setMax(5000);
suspendDeferTime.setOffset(10);
suspendDeferTime.setProgress(IntelliPlug.getIntelliPlugSuspendDeferTime() / 10);
suspendDeferTime.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
IntelliPlug.setIntelliPlugSuspendDeferTime(position * 10, getActivity());
}
});
intelliplug.add(suspendDeferTime);
}
if (IntelliPlug.hasIntelliPlugDeferSampling()) {
SeekBarView deferSampling = new SeekBarView();
deferSampling.setTitle(getString(R.string.defer_sampling));
deferSampling.setUnit(getString(R.string.ms));
deferSampling.setMax(1000);
deferSampling.setProgress(IntelliPlug.getIntelliPlugDeferSampling());
deferSampling.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
IntelliPlug.setIntelliPlugDeferSampling(position, getActivity());
}
});
intelliplug.add(deferSampling);
}
if (IntelliPlug.hasIntelliPlugBoostLockDuration()) {
SeekBarView boostLockDuration = new SeekBarView();
boostLockDuration.setTitle(getString(R.string.boost_lock_duration));
boostLockDuration.setSummary(getString(R.string.boost_lock_duration_summary));
boostLockDuration.setUnit(getString(R.string.ms));
boostLockDuration.setMax(5000);
boostLockDuration.setMin(1);
boostLockDuration.setProgress(IntelliPlug.getIntelliPlugBoostLockDuration() - 1);
boostLockDuration.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
IntelliPlug.setIntelliPlugBoostLockDuration(position + 1, getActivity());
}
});
intelliplug.add(boostLockDuration);
}
if (IntelliPlug.hasIntelliPlugDownLockDuration()) {
SeekBarView downLockDuration = new SeekBarView();
downLockDuration.setTitle(getString(R.string.down_lock_duration));
downLockDuration.setSummary(getString(R.string.down_lock_duration_summary));
downLockDuration.setUnit(getString(R.string.ms));
downLockDuration.setMax(5000);
downLockDuration.setMin(1);
downLockDuration.setProgress(IntelliPlug.getIntelliPlugDownLockDuration() - 1);
downLockDuration.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
IntelliPlug.setIntelliPlugDownLockDuration(position + 1, getActivity());
}
});
intelliplug.add(downLockDuration);
}
if (IntelliPlug.hasIntelliPlugFShift()) {
SeekBarView fShift = new SeekBarView();
fShift.setTitle(getString(R.string.fshift));
fShift.setMax(4);
fShift.setProgress(IntelliPlug.getIntelliPlugFShift());
fShift.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
IntelliPlug.setIntelliPlugFShift(position, getActivity());
}
});
intelliplug.add(fShift);
}
if (intelliplug.size() > 0) {
items.add(title);
items.addAll(intelliplug);
}
}
use of com.moro.mtweaks.views.recyclerview.TitleView in project MTweaks-KernelAdiutorMOD by morogoku.
the class CPUHotplugFragment method msmHotplugInit.
private void msmHotplugInit(List<RecyclerViewItem> items) {
List<RecyclerViewItem> msmHotplug = new ArrayList<>();
TitleView title = new TitleView();
title.setText(getString(R.string.msm_hotplug));
if (MSMHotplug.hasMsmHotplugEnable()) {
SwitchView enable = new SwitchView();
enable.setTitle(getString(R.string.msm_hotplug));
enable.setSummary(getString(R.string.msm_hotplug_summary));
enable.setChecked(MSMHotplug.isMsmHotplugEnabled());
enable.addOnSwitchListener(new SwitchView.OnSwitchListener() {
@Override
public void onChanged(SwitchView switchView, boolean isChecked) {
MSMHotplug.enableMsmHotplug(isChecked, getActivity());
}
});
msmHotplug.add(enable);
mEnableViews.add(enable);
}
if (MSMHotplug.hasMsmHotplugDebugMask()) {
SwitchView debugMask = new SwitchView();
debugMask.setTitle(getString(R.string.debug_mask));
debugMask.setSummary(getString(R.string.debug_mask_summary));
debugMask.setChecked(MSMHotplug.isMsmHotplugDebugMaskEnabled());
debugMask.addOnSwitchListener(new SwitchView.OnSwitchListener() {
@Override
public void onChanged(SwitchView switchView, boolean isChecked) {
MSMHotplug.enableMsmHotplugDebugMask(isChecked, getActivity());
}
});
msmHotplug.add(debugMask);
}
if (MSMHotplug.hasMsmHotplugMinCpusOnline()) {
SeekBarView minCpusOnline = new SeekBarView();
minCpusOnline.setTitle(getString(R.string.min_cpu_online));
minCpusOnline.setSummary(getString(R.string.min_cpu_online_summary));
minCpusOnline.setMax(CPUFreq.getCpuCount());
minCpusOnline.setMin(1);
minCpusOnline.setProgress(MSMHotplug.getMsmHotplugMinCpusOnline() - 1);
minCpusOnline.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
MSMHotplug.setMsmHotplugMinCpusOnline(position + 1, getActivity());
}
});
msmHotplug.add(minCpusOnline);
}
if (MSMHotplug.hasMsmHotplugMaxCpusOnline()) {
SeekBarView maxCpusOnline = new SeekBarView();
maxCpusOnline.setTitle(getString(R.string.max_cpu_online));
maxCpusOnline.setSummary(getString(R.string.max_cpu_online_summary));
maxCpusOnline.setMax(CPUFreq.getCpuCount());
maxCpusOnline.setMin(1);
maxCpusOnline.setProgress(MSMHotplug.getMsmHotplugMaxCpusOnline() - 1);
maxCpusOnline.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
MSMHotplug.setMsmHotplugMaxCpusOnline(position + 1, getActivity());
}
});
msmHotplug.add(maxCpusOnline);
}
if (MSMHotplug.hasMsmHotplugCpusBoosted()) {
SeekBarView cpusBoosted = new SeekBarView();
cpusBoosted.setTitle(getString(R.string.cpus_boosted));
cpusBoosted.setSummary(getString(R.string.cpus_boosted_summary));
cpusBoosted.setMax(CPUFreq.getCpuCount());
cpusBoosted.setMin(1);
cpusBoosted.setProgress(MSMHotplug.getMsmHotplugCpusBoosted());
cpusBoosted.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
MSMHotplug.setMsmHotplugCpusBoosted(position, getActivity());
}
});
msmHotplug.add(cpusBoosted);
}
if (MSMHotplug.hasMsmHotplugMaxCpusOnlineSusp()) {
SeekBarView maxCpusOnlineSusp = new SeekBarView();
maxCpusOnlineSusp.setTitle(getString(R.string.max_cpu_online_screen_off));
maxCpusOnlineSusp.setSummary(getString(R.string.max_cpu_online_screen_off_summary));
maxCpusOnlineSusp.setMax(CPUFreq.getCpuCount());
maxCpusOnlineSusp.setMin(1);
maxCpusOnlineSusp.setProgress(MSMHotplug.getMsmHotplugMaxCpusOnlineSusp() - 1);
maxCpusOnlineSusp.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
MSMHotplug.setMsmHotplugMaxCpusOnlineSusp(position + 1, getActivity());
}
});
msmHotplug.add(maxCpusOnlineSusp);
}
if (MSMHotplug.hasMsmHotplugBoostLockDuration()) {
SeekBarView boostLockDuration = new SeekBarView();
boostLockDuration.setTitle(getString(R.string.boost_lock_duration));
boostLockDuration.setSummary(getString(R.string.boost_lock_duration_summary));
boostLockDuration.setMax(5000);
boostLockDuration.setMin(1);
boostLockDuration.setProgress(MSMHotplug.getMsmHotplugBoostLockDuration() - 1);
boostLockDuration.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
MSMHotplug.setMsmHotplugBoostLockDuration(position + 1, getActivity());
}
});
msmHotplug.add(boostLockDuration);
}
if (MSMHotplug.hasMsmHotplugDownLockDuration()) {
SeekBarView downLockDuration = new SeekBarView();
downLockDuration.setTitle(getString(R.string.down_lock_duration));
downLockDuration.setSummary(getString(R.string.down_lock_duration_summary));
downLockDuration.setMax(5000);
downLockDuration.setMin(1);
downLockDuration.setProgress(MSMHotplug.getMsmHotplugDownLockDuration() - 1);
downLockDuration.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
MSMHotplug.setMsmHotplugDownLockDuration(position + 1, getActivity());
}
});
msmHotplug.add(downLockDuration);
}
if (MSMHotplug.hasMsmHotplugHistorySize()) {
SeekBarView historySize = new SeekBarView();
historySize.setTitle(getString(R.string.history_size));
historySize.setSummary(getString(R.string.history_size_summary));
historySize.setMax(60);
historySize.setMin(1);
historySize.setProgress(MSMHotplug.getMsmHotplugHistorySize() - 1);
historySize.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
MSMHotplug.setMsmHotplugHistorySize(position + 1, getActivity());
}
});
msmHotplug.add(historySize);
}
if (MSMHotplug.hasMsmHotplugUpdateRate()) {
SeekBarView updateRate = new SeekBarView();
updateRate.setTitle(getString(R.string.update_rate));
updateRate.setSummary(getString(R.string.update_rate_summary));
updateRate.setMax(60);
updateRate.setProgress(MSMHotplug.getMsmHotplugUpdateRate());
updateRate.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
MSMHotplug.setMsmHotplugUpdateRate(position, getActivity());
}
});
msmHotplug.add(updateRate);
}
if (MSMHotplug.hasMsmHotplugFastLaneLoad()) {
SeekBarView fastLaneLoad = new SeekBarView();
fastLaneLoad.setTitle(getString(R.string.fast_lane_load));
fastLaneLoad.setSummary(getString(R.string.fast_lane_load_summary));
fastLaneLoad.setMax(400);
fastLaneLoad.setProgress(MSMHotplug.getMsmHotplugFastLaneLoad());
fastLaneLoad.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
MSMHotplug.setMsmHotplugFastLaneLoad(position, getActivity());
}
});
msmHotplug.add(fastLaneLoad);
}
if (MSMHotplug.hasMsmHotplugFastLaneMinFreq() && CPUFreq.getFreqs() != null) {
SelectView fastLaneMinFreq = new SelectView();
fastLaneMinFreq.setTitle(getString(R.string.fast_lane_min_freq));
fastLaneMinFreq.setSummary(getString(R.string.fast_lane_min_freq_summary));
fastLaneMinFreq.setItems(CPUFreq.getAdjustedFreq(getActivity()));
fastLaneMinFreq.setItem((MSMHotplug.getMsmHotplugFastLaneMinFreq() / 1000) + getString(R.string.mhz));
fastLaneMinFreq.setOnItemSelected(new SelectView.OnItemSelected() {
@Override
public void onItemSelected(SelectView selectView, int position, String item) {
MSMHotplug.setMsmHotplugFastLaneMinFreq(CPUFreq.getFreqs().get(position), getActivity());
}
});
msmHotplug.add(fastLaneMinFreq);
}
if (MSMHotplug.hasMsmHotplugOfflineLoad()) {
SeekBarView offlineLoad = new SeekBarView();
offlineLoad.setTitle(getString(R.string.offline_load));
offlineLoad.setSummary(getString(R.string.offline_load_summary));
offlineLoad.setProgress(MSMHotplug.getMsmHotplugOfflineLoad());
offlineLoad.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
MSMHotplug.setMsmHotplugOfflineLoad(position, getActivity());
}
});
msmHotplug.add(offlineLoad);
}
if (MSMHotplug.hasMsmHotplugIoIsBusy()) {
SwitchView ioIsBusy = new SwitchView();
ioIsBusy.setTitle(getString(R.string.io_is_busy));
ioIsBusy.setSummary(getString(R.string.io_is_busy_summary));
ioIsBusy.setChecked(MSMHotplug.isMsmHotplugIoIsBusyEnabled());
ioIsBusy.addOnSwitchListener(new SwitchView.OnSwitchListener() {
@Override
public void onChanged(SwitchView switchView, boolean isChecked) {
MSMHotplug.enableMsmHotplugIoIsBusy(isChecked, getActivity());
}
});
msmHotplug.add(ioIsBusy);
}
if (MSMHotplug.hasMsmHotplugSuspendMaxCpus()) {
SeekBarView suspendMaxCpus = new SeekBarView();
suspendMaxCpus.setTitle(getString(R.string.max_cpu_online_screen_off));
suspendMaxCpus.setSummary(getString(R.string.max_cpu_online_screen_off_summary));
suspendMaxCpus.setMax(CPUFreq.getCpuCount());
suspendMaxCpus.setMin(1);
suspendMaxCpus.setProgress(MSMHotplug.getMsmHotplugSuspendMaxCpus());
suspendMaxCpus.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
MSMHotplug.setMsmHotplugSuspendMaxCpus(position, getActivity());
}
});
msmHotplug.add(suspendMaxCpus);
}
if (MSMHotplug.hasMsmHotplugSuspendFreq() && CPUFreq.getFreqs() != null) {
SelectView suspendFreq = new SelectView();
suspendFreq.setTitle(getString(R.string.cpu_max_screen_off_freq));
suspendFreq.setSummary(getString(R.string.cpu_max_screen_off_freq_summary));
suspendFreq.setItems(CPUFreq.getAdjustedFreq(getActivity()));
suspendFreq.setItem((MSMHotplug.getMsmHotplugSuspendFreq() / 1000) + getString(R.string.mhz));
suspendFreq.setOnItemSelected(new SelectView.OnItemSelected() {
@Override
public void onItemSelected(SelectView selectView, int position, String item) {
MSMHotplug.setMsmHotplugSuspendFreq(CPUFreq.getFreqs().get(position), getActivity());
}
});
msmHotplug.add(suspendFreq);
}
if (MSMHotplug.hasMsmHotplugSuspendDeferTime()) {
SeekBarView suspendDeferTime = new SeekBarView();
suspendDeferTime.setTitle(getString(R.string.suspend_defer_time));
suspendDeferTime.setUnit(getString(R.string.ms));
suspendDeferTime.setMax(5000);
suspendDeferTime.setOffset(10);
suspendDeferTime.setProgress(MSMHotplug.getMsmHotplugSuspendDeferTime() / 10);
suspendDeferTime.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
MSMHotplug.setMsmHotplugSuspendDeferTime(position * 10, getActivity());
}
});
msmHotplug.add(suspendDeferTime);
}
if (msmHotplug.size() > 0) {
items.add(title);
items.addAll(msmHotplug);
}
}
use of com.moro.mtweaks.views.recyclerview.TitleView in project MTweaks-KernelAdiutorMOD by morogoku.
the class CPUVoltageCl1Fragment method addItems.
@Override
protected void addItems(List<RecyclerViewItem> items) {
mVoltages.clear();
final List<String> freqs = VoltageCl1.getFreqs();
final List<String> voltages = VoltageCl1.getVoltages();
final List<String> voltagesStock = VoltageCl1.getStockVoltages();
if (freqs != null && voltages != null && voltagesStock != null && freqs.size() == voltages.size()) {
CardView freqCard = new CardView(getActivity());
freqCard.setTitle(getString(R.string.cpuCl1_volt_control));
List<String> progress = new ArrayList<>();
for (float i = -100000f; i < 31250f; i += 6250) {
String global = String.valueOf(i / VoltageCl1.getOffset());
progress.add(global);
}
seekbarProfInit(mSeekbarProf, freqs, voltages, voltagesStock, progress);
freqCard.addItem(mSeekbarProf);
Boolean enableGlobal = Prefs.getBoolean("CpuCl1_global_volts", true, getActivity());
SwitchView voltControl = new SwitchView();
voltControl.setTitle(getString(R.string.cpu_manual_volt));
voltControl.setSummaryOn(getString(R.string.cpu_manual_volt_summaryOn));
voltControl.setSummaryOff(getString(R.string.cpu_manual_volt_summaryOff));
voltControl.setChecked(enableGlobal);
voltControl.addOnSwitchListener(new SwitchView.OnSwitchListener() {
@Override
public void onChanged(SwitchView switchView, boolean isChecked) {
if (isChecked) {
Prefs.saveBoolean("CpuCl1_global_volts", true, getActivity());
Prefs.saveBoolean("CpuCl1_individual_volts", false, getActivity());
reload();
} else {
Prefs.saveBoolean("CpuCl1_global_volts", false, getActivity());
Prefs.saveBoolean("CpuCl1_individual_volts", true, getActivity());
Prefs.saveInt("CpuCl1_seekbarPref_value", 16, getActivity());
reload();
}
}
});
freqCard.addItem(voltControl);
if (freqCard.size() > 0) {
items.add(freqCard);
}
TitleView tunables = new TitleView();
tunables.setText(getString(R.string.cpuCl1_volt));
items.add(tunables);
for (int i = 0; i < freqs.size(); i++) {
SeekBarView seekbar = new SeekBarView();
seekbarInit(seekbar, freqs.get(i), voltages.get(i), voltagesStock.get(i));
mVoltages.add(seekbar);
}
}
items.addAll(mVoltages);
}
use of com.moro.mtweaks.views.recyclerview.TitleView in project MTweaks-KernelAdiutorMOD by morogoku.
the class GPUFragment method voltageInit.
private void voltageInit(List<RecyclerViewItem> items) {
List<Integer> freqs = GPUFreq.getAvailableFreqs();
List<String> voltages = GPUFreq.getVoltages();
List<String> voltagesStock = GPUFreq.getStockVoltages();
if (freqs != null && voltages != null && voltagesStock != null && freqs.size() == voltages.size()) {
CardView voltCard = new CardView(getActivity());
voltCard.setTitle(getString(R.string.gpu_voltage));
List<String> progress = new ArrayList<>();
for (float i = -100000f; i < 31250f; i += 6250) {
String global = String.valueOf(i / GPUFreq.getVoltageOffset());
progress.add(global);
}
seekbarProfInit(mSeekbarProf, freqs, voltages, voltagesStock, progress);
voltCard.addItem(mSeekbarProf);
Boolean enableGlobal = Prefs.getBoolean("gpu_global_volts", true, getActivity());
SwitchView voltControl = new SwitchView();
voltControl.setTitle(getString(R.string.cpu_manual_volt));
voltControl.setSummaryOn(getString(R.string.cpu_manual_volt_summaryOn));
voltControl.setSummaryOff(getString(R.string.cpu_manual_volt_summaryOff));
voltControl.setChecked(enableGlobal);
voltControl.addOnSwitchListener(new SwitchView.OnSwitchListener() {
@Override
public void onChanged(SwitchView switchView, boolean isChecked) {
if (isChecked) {
Prefs.saveBoolean("gpu_global_volts", true, getActivity());
Prefs.saveBoolean("gpu_individual_volts", false, getActivity());
reload();
} else {
Prefs.saveBoolean("gpu_global_volts", false, getActivity());
Prefs.saveBoolean("gpu_individual_volts", true, getActivity());
Prefs.saveInt("gpu_seekbarPref_value", 16, getActivity());
reload();
}
}
});
voltCard.addItem(voltControl);
if (voltCard.size() > 0) {
items.add(voltCard);
}
TitleView tunables = new TitleView();
tunables.setText(getString(R.string.cpuCl1_volt));
items.add(tunables);
for (int i = 0; i < freqs.size(); i++) {
SeekBarView seekbar = new SeekBarView();
seekbarInit(seekbar, freqs.get(i), voltages.get(i), voltagesStock.get(i));
mVoltages.add(seekbar);
}
items.addAll(mVoltages);
}
}
use of com.moro.mtweaks.views.recyclerview.TitleView in project MTweaks-KernelAdiutorMOD by morogoku.
the class HmpFragment method addItems.
@Override
protected void addItems(List<RecyclerViewItem> items) {
CardView card = new CardView(getActivity());
card.setTitle(getString(R.string.hmp_long));
DescriptionView hmp = new DescriptionView();
hmp.setSummary(getString(R.string.hmp_desc));
card.addItem(hmp);
if (Hmp.hasUpThreshold()) {
mUpThreshold = new SeekBarView();
mUpThreshold.setTitle(getString(R.string.hmp_up_threshold));
mUpThreshold.setSummary(getString(R.string.hmp_up_threshold_summary));
mUpThreshold.setMax(1024);
mUpThreshold.setMin(1);
mUpThreshold.setProgress(Utils.strToInt(Hmp.getUpThreshold()) - 1);
mUpThreshold.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
Hmp.setUpThreshold((position + 1), getActivity());
}
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
});
card.addItem(mUpThreshold);
}
if (Hmp.hasDownThreshold()) {
mDownThreshold = new SeekBarView();
mDownThreshold.setTitle(getString(R.string.hmp_down_threshold));
mDownThreshold.setSummary(getString(R.string.hmp_down_threshold_summary));
mDownThreshold.setMax(1024);
mDownThreshold.setMin(1);
mDownThreshold.setProgress(Utils.strToInt(Hmp.getDownThreshold()) - 1);
mDownThreshold.setOnSeekBarListener(new SeekBarView.OnSeekBarListener() {
@Override
public void onStop(SeekBarView seekBarView, int position, String value) {
Hmp.setDownThreshold((position + 1), getActivity());
}
@Override
public void onMove(SeekBarView seekBarView, int position, String value) {
}
});
card.addItem(mDownThreshold);
}
if (card.size() > 0) {
items.add(card);
}
if (Hmp.hasUpThreshold() && Hmp.hasDownThreshold()) {
TitleView profilesTitle = new TitleView();
profilesTitle.setText(getString(R.string.profile));
items.add(profilesTitle);
for (int id : sProfiles.keySet()) {
DescriptionView profile = new DescriptionView();
profile.setTitle(getString(id));
profile.setSummary(sProfiles.get(id));
profile.setOnItemClickListener(new RecyclerViewItem.OnItemClickListener() {
@Override
public void onClick(RecyclerViewItem item) {
Hmp.setHmpProfile(((DescriptionView) item).getSummary().toString(), getActivity());
refreshHmpProfile();
}
});
items.add(profile);
}
}
}
Aggregations