Search in sources :

Example 6 with StatsView

use of com.moro.mtweaks.views.recyclerview.StatsView in project MTweaks-KernelAdiutorMOD by morogoku.

the class BatteryFragment method voltageInit.

private void voltageInit(List<RecyclerViewItem> items) {
    mVoltage = new StatsView();
    mVoltage.setTitle(getString(R.string.voltage));
    items.add(mVoltage);
}
Also used : StatsView(com.moro.mtweaks.views.recyclerview.StatsView)

Example 7 with StatsView

use of com.moro.mtweaks.views.recyclerview.StatsView in project MTweaks-KernelAdiutorMOD by morogoku.

the class BatteryFragment method currentInit.

private void currentInit(List<RecyclerViewItem> items) {
    mCurrent = new StatsView();
    mCurrent.setTitle(getString(R.string.current_now));
    items.add(mCurrent);
}
Also used : StatsView(com.moro.mtweaks.views.recyclerview.StatsView)

Example 8 with StatsView

use of com.moro.mtweaks.views.recyclerview.StatsView in project MTweaks-KernelAdiutorMOD by morogoku.

the class BatteryFragment method currentavgInit.

private void currentavgInit(List<RecyclerViewItem> items) {
    mCurrentAvg = new StatsView();
    mCurrentAvg.setTitle(getString(R.string.current_avg));
    items.add(mCurrentAvg);
}
Also used : StatsView(com.moro.mtweaks.views.recyclerview.StatsView)

Example 9 with StatsView

use of com.moro.mtweaks.views.recyclerview.StatsView in project MTweaks-KernelAdiutorMOD by morogoku.

the class BatteryFragment method tempInit.

private void tempInit(List<RecyclerViewItem> items) {
    mTemp = new StatsView();
    mTemp.setTitle(getString(R.string.temp));
    items.add(mTemp);
}
Also used : StatsView(com.moro.mtweaks.views.recyclerview.StatsView)

Aggregations

StatsView (com.moro.mtweaks.views.recyclerview.StatsView)9 TemperatureView (com.moro.mtweaks.views.recyclerview.overallstatistics.TemperatureView)1