Android-Mod-Menu-GUI
Android-Mod-Menu-GUI copied to clipboard
Android Mod Menu Gui
Summary - GUI
This is the old gui i had back then this is a LGL's Menu Version 1.9 you can use this to change to the current LGL versions.
Everything is in that Repository what you need to know like changing the image and other things that you wanna add etc.
https://user-images.githubusercontent.com/80063088/127003597-8701cd24-dfd3-4a23-aeb8-7ea8847ae525.mp4
- Here is the gui in action i made this gui a bit better then the old one MOD MENU VIDEO
MOD MENU IMAGE
CUSTOM SLIDER
seekBar.getProgressDrawable().setColorFilter(Color.parseColor("#FF1112"), PorterDuff.Mode.MULTIPLY);
seekBar.getThumb().setColorFilter(Color.parseColor("#FF1112"), PorterDuff.Mode.SCREEN);
SHADER NAME
TextView title = new TextView(this);
int start = Color.parseColor("#000000");
int end = Color.parseColor("#FF1112");
Shader shader = new LinearGradient(0, 0, 40, title.getLineHeight(),
start, end, Shader.TileMode.MIRROR);
title.getPaint().setShader(shader);
A WARNING/MESSAGE FOR THE USERS
This is html based so you can custommize it
CUSTOM CATEGORY
I used GradientDrawable & the shader of the name to customize it.