summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorxC3FFF0E <78732474+xC3FFF0E@users.noreply.github.com>2023-07-15 18:24:11 +0200
committerGitHub <noreply@github.com>2023-07-15 18:24:11 +0200
commitc943c904e0eb7e0917daf326f970734bf7f1398b (patch)
treec376c035975889948412426f60358e758b28c910
parentUpdate SketchwareUtil.java (diff)
downloadxManager-c943c904e0eb7e0917daf326f970734bf7f1398b.tar
xManager-c943c904e0eb7e0917daf326f970734bf7f1398b.tar.gz
xManager-c943c904e0eb7e0917daf326f970734bf7f1398b.tar.bz2
xManager-c943c904e0eb7e0917daf326f970734bf7f1398b.tar.lz
xManager-c943c904e0eb7e0917daf326f970734bf7f1398b.tar.xz
xManager-c943c904e0eb7e0917daf326f970734bf7f1398b.tar.zst
xManager-c943c904e0eb7e0917daf326f970734bf7f1398b.zip
-rw-r--r--app/src/main/java/com/xc3fff0e/xmanager/SplashActivity.java26
1 files changed, 10 insertions, 16 deletions
diff --git a/app/src/main/java/com/xc3fff0e/xmanager/SplashActivity.java b/app/src/main/java/com/xc3fff0e/xmanager/SplashActivity.java
index 5bd92e2..49e3b4f 100644
--- a/app/src/main/java/com/xc3fff0e/xmanager/SplashActivity.java
+++ b/app/src/main/java/com/xc3fff0e/xmanager/SplashActivity.java
@@ -76,34 +76,28 @@ public class SplashActivity extends AppCompatActivity {
}
Glide.with(getApplicationContext()).load(Uri.parse("file:///android_asset/splash.gif")).into(icon_splash);
title_splash.setTypeface(Typeface.createFromAsset(getAssets(),"fonts/base_glitch.ttf"), 1);
- if (0 == SketchwareUtil.getRandom((int)(0), (int)(5))) {
+ if (0 == SketchwareUtil.getRandom((int)(0), (int)(4))) {
title_splash.setText("xManager");
title_splash.setTextSize((int)25);
}
else {
- if (1 == SketchwareUtil.getRandom((int)(0), (int)(5))) {
- title_splash.setText("Exodus 20:15");
+ if (1 == SketchwareUtil.getRandom((int)(0), (int)(4))) {
+ title_splash.setText("It's A Movement");
title_splash.setTextSize((int)25);
}
else {
- if (2 == SketchwareUtil.getRandom((int)(0), (int)(5))) {
- title_splash.setText("It's A Movement");
+ if (2 == SketchwareUtil.getRandom((int)(0), (int)(4))) {
+ title_splash.setText("We Are Resistance");
title_splash.setTextSize((int)25);
}
else {
- if (3 == SketchwareUtil.getRandom((int)(0), (int)(5))) {
- title_splash.setText("We Are Resistance");
- title_splash.setTextSize((int)25);
+ if (3 == SketchwareUtil.getRandom((int)(0), (int)(4))) {
+ title_splash.setText("Freedom For Everyone");
+ title_splash.setTextSize((int)20);
}
else {
- if (4 == SketchwareUtil.getRandom((int)(0), (int)(5))) {
- title_splash.setText("Freedom For Everyone");
- title_splash.setTextSize((int)20);
- }
- else {
- title_splash.setText("Don't Make Us Popular!");
- title_splash.setTextSize((int)20);
- }
+ title_splash.setText("Don't Make Us Popular!");
+ title_splash.setTextSize((int)20);
}
}
}