If for some reason you're unable to download the.rar file, you can view a screenshot of it below:
You can also buy this game on the EU PlayStation Store for a price of $9.99
If you have any questions, comments, or anything about this game, please leave a comment below.package com.vickychijio.spectre.dialogs.battery;
import android.content.Context;
import android.os.Build;
import android.os.Bundle;
import android.support.annotation.NonNull;
import android.support.v7.app.AlertDialog;
import android.support.v7.app.AppCompatDelegate;
import android.view.View;
import android.view.inputmethod.InputMethodManager;
import com.vickychijio.spectre.R;
import com.vickychijio.spectre.utils.SharedPreferencesUtil;
/**
* Created by vickychijio on 9/12/17.
*/
public class BatteryUsageDialog extends BaseActionDialog {
@Override
protected void onCreate(@NonNull Context context, @NonNull Bundle savedInstanceState) {
super.onCreate(context, savedInstanceState);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
setTitle(R.string.title_battery_usage);
} else {
setTitle(R.string.title_battery_usage_for_loLIPO);
}
setContentView(R.layout.activity_battery_usage_dialog);
ActionBarUtils.showTitle(context, title, "Battery Usage");
}
public void onOkClicked(View view) {
SharedPreferencesUtil.putBoolean(SharedPreferencesUtil.PREF_
Related links:
Comments