Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added option to hide toast messages #64

Open
wants to merge 14 commits into
base: test-adb-server
Choose a base branch
from
Open
17 changes: 17 additions & 0 deletions .idea/deploymentTargetDropDown.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion .idea/gradle.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ public class MouseEmulationEngine {

public static int scrollSpeed;

public static boolean isHideToastsOptionEnabled;

public static boolean isBossKeyDisabled;

public static boolean isBossKeySetToToggle;
Expand Down Expand Up @@ -277,8 +279,7 @@ public boolean perform (KeyEvent keyEvent) {
waitToChange();
if (isEnabled){
isInScrollMode = !isInScrollMode;
Toast.makeText(mService, isInScrollMode ? "Scroll Mode: Enabled" : "Scroll Mode: Disabled",
Toast.LENGTH_SHORT).show();
showToast(isInScrollMode ? "Scroll Mode: Enabled" : "Scroll Mode: Disabled");
return true;
}
}
Expand All @@ -292,7 +293,7 @@ else if (keyEvent.getKeyCode() == bossKey && !isBossKeyDisabled && isBossKeySetT
isInScrollMode = false;
} else if (isEnabled && !isInScrollMode) {
// Mouse Mode -> Scroll Mode
Toast.makeText(mService, "Scroll Mode", Toast.LENGTH_SHORT).show();
showToast("Scroll Mode");
isInScrollMode = true;
} else if (!isEnabled) {
// Dpad mode -> Mouse mode
Expand All @@ -313,14 +314,14 @@ else if (keyEvent.getKeyCode() == bossKey && isBossKeyDisabled) {
// mouse already enabled, disable it and make it go away
this.isEnabled = false;
mPointerControl.disappear();
Toast.makeText(mService, "Dpad Mode", Toast.LENGTH_SHORT).show();
showToast("D-Pad Mode");
return true;
} else {
// mouse is disabled, enable it, reset it and show it
this.isEnabled = true;
mPointerControl.reset();
mPointerControl.reappear();
Toast.makeText(mService, "Mouse/Scroll", Toast.LENGTH_SHORT).show();
showToast("Mouse/Scroll mode");
}
}

Expand Down Expand Up @@ -508,16 +509,28 @@ private void setMouseModeEnabled(boolean enable) {
isInScrollMode = false;
mPointerControl.reset();
mPointerControl.reappear();
Toast.makeText(mService, "Mouse Mode", Toast.LENGTH_SHORT).show();
showToast("Mouse Mode");
}
else {
// Disable Mouse Mode
this.isEnabled = false;
mPointerControl.disappear();
Toast.makeText(mService, "D-Pad Mode", Toast.LENGTH_SHORT).show();
showToast("D-Pad Mode");
}
}

private void showToast(String message){

if(!isHideToastsOptionEnabled){
Toast.makeText(mService,message,Toast.LENGTH_SHORT).show();
}else {
Log.i(LOG_TAG,message);
}

}



/**
* Simple count down timer for checking keypress duration
*/
Expand Down
15 changes: 13 additions & 2 deletions app/src/main/java/io/github/virresh/matvt/gui/GuiActivity.java
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

public class GuiActivity extends AppCompatActivity {
CountDownTimer repopulate;
CheckBox cb_mouse_bordered, cb_disable_bossKey, cb_behaviour_bossKey;
CheckBox cb_mouse_bordered, cb_disable_bossKey, cb_behaviour_bossKey, cb_hide_toasts;
TextView gui_acc_perm, gui_acc_serv, gui_overlay_perm, gui_overlay_serv, gui_about;

EditText et_override;
Expand Down Expand Up @@ -60,6 +60,7 @@ protected void onCreate(Bundle savedInstanceState) {
et_override = findViewById(R.id.et_override);

cb_mouse_bordered = findViewById(R.id.cb_border_window);
cb_hide_toasts = findViewById(R.id.cb_hide_toasts);
cb_disable_bossKey = findViewById(R.id.cb_disable_bossKey);
cb_behaviour_bossKey = findViewById(R.id.cb_behaviour_bossKey);

Expand Down Expand Up @@ -147,6 +148,11 @@ public void onStopTrackingTouch(SeekBar seekBar) {}
PointerControl.isBordered = b;
});

cb_hide_toasts.setOnCheckedChangeListener(((compoundButton, value) -> {
Helper.setHideToastsOptionEnabled(getApplicationContext(), value);
MouseEmulationEngine.isHideToastsOptionEnabled = value;
}));

cb_disable_bossKey.setOnCheckedChangeListener(((compoundButton, value) -> {
Helper.setBossKeyDisabled(getApplicationContext(), value);
MouseEmulationEngine.isBossKeyDisabled = value;
Expand Down Expand Up @@ -181,6 +187,11 @@ private void checkValues(IconStyleSpinnerAdapter adapter) {
boolean bordered = Helper.getMouseBordered(ctx);
cb_mouse_bordered.setChecked(bordered);

boolean toastVisibility = Helper.isHideToastOptionEnabled(ctx);

cb_hide_toasts.setChecked(toastVisibility);


boolean bossKeyStatus = Helper.isBossKeyDisabled(ctx);
cb_disable_bossKey.setChecked(bossKeyStatus);

Expand Down Expand Up @@ -280,4 +291,4 @@ public void onFinish() {
public void callDetect(View view) {
startActivity(new Intent(this, KeyDetection.class).addFlags(Intent.FLAG_ACTIVITY_NEW_TASK));
}
}
}
15 changes: 14 additions & 1 deletion app/src/main/java/io/github/virresh/matvt/helper/Helper.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import android.view.accessibility.AccessibilityEvent;
import android.view.accessibility.AccessibilityManager;


import androidx.annotation.RequiresApi;

import com.tananaev.adblib.AdbBase64;
Expand All @@ -29,6 +30,7 @@ public class Helper {
public static Context helperContext;

static final String PREFS_ID = "MATVT";
static final String PREF_ALERTS_HIDE_TOASTS = "HIDE_ALERTS";
static final String PREF_KEY_CB_OVERRIDE_STAT = "CB_OVERRIDE_STAT";
static final String PREF_KEY_CB_OVERRIDE_VAL = "CB_OVERRIDE_VAL";
static final String PREF_KEY_MOUSE_ICON = "MOUSE_ICON";
Expand All @@ -40,7 +42,6 @@ public class Helper {
static final String IO_PUBLICKEY_FILENAME = "public_key.bin";
static final String IO_PRIVATEKEY_FILENAME = "private_key.bin";


public static boolean isAccessibilityDisabled(Context ctx) {
return !isAccServiceInstalled(ctx.getPackageName() + "/.services.MouseEventService", ctx);
}
Expand Down Expand Up @@ -145,6 +146,18 @@ public static boolean getMouseBordered(Context ctx) {
SharedPreferences sp = ctx.getSharedPreferences(PREFS_ID, Context.MODE_PRIVATE);
return sp.getBoolean(PREF_KEY_MOUSE_BORDERED, false);
}
@SuppressLint("ApplySharedPref")
public static void setHideToastsOptionEnabled(Context ctx, Boolean val){
SharedPreferences sp = ctx.getSharedPreferences(PREFS_ID,Context.MODE_PRIVATE);
SharedPreferences.Editor editor = sp.edit();
editor.putBoolean(PREF_ALERTS_HIDE_TOASTS,val);
editor.commit();
}

public static boolean isHideToastOptionEnabled(Context ctx){
SharedPreferences sp = ctx.getSharedPreferences(PREFS_ID, Context.MODE_PRIVATE);
return sp.getBoolean(PREF_ALERTS_HIDE_TOASTS, false);
}

@SuppressLint("ApplySharedPref")
public static void setBossKeyDisabled(Context ctx, Boolean val) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ protected void onServiceConnected() {
bossKey = KeyEvent.KEYCODE_VOLUME_MUTE;
PointerControl.isBordered = Helper.getMouseBordered(this);
scrollSpeed = Helper.getScrollSpeed(this);
MouseEmulationEngine.isHideToastsOptionEnabled = Helper.isHideToastOptionEnabled(this);
MouseEmulationEngine.isBossKeyDisabled = Helper.isBossKeyDisabled(this);
MouseEmulationEngine.isBossKeySetToToggle = Helper.isBossKeySetToToggle(this);
if (Helper.isOverriding(this)) bossKey = Helper.getBossKeyValue(this);
Expand Down
14 changes: 13 additions & 1 deletion app/src/main/res/layout/activity_main_gui.xml
Original file line number Diff line number Diff line change
Expand Up @@ -217,14 +217,26 @@
android:textColor="@color/white"
android:textSize="20sp" />

<CheckBox
android:id="@+id/cb_hide_toasts"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layoutDirection="rtl"
android:nextFocusUp="@id/cb_border_window"
android:buttonTint="@color/white"
android:text="Hide toast messages (Recommended for smaller displays)"
android:textColor="@color/white"
android:textSize="20sp"/>

<CheckBox
android:id="@+id/cb_disable_bossKey"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:buttonTint="@color/white"
android:layoutDirection="rtl"
android:nextFocusUp="@id/cb_border_window"
android:nextFocusUp="@id/cb_hide_toasts"
android:text="Disable Boss Key (useful for full size remotes)"
android:textColor="@color/white"
android:textSize="20sp" />
Expand Down