REQUEST Xc6 802 add different background to splash screen

dazbrin

Well-known member
Joined
Nov 16, 2021
Messages
215
Awards
3
Offline
I'm looking for a bit of help adding a different background to splash screen on xc6 802 or if someone has a version of the apk already edited. At the moment it is just bg2 in drawable and is the same background throughout the app.

Any help would be appreciated
 

lucif3r

Well-known member
Joined
Jun 3, 2021
Messages
116
Awards
4
Offline
I believe there is already a tutorial posted in this forum about how to do it. Please use the search option.
 

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,913
Awards
4
Offline
it used to be easy a few versions back but they have made it more difficult now if i remember
 

APK UK

Member
VIP Member
Joined
May 27, 2021
Messages
69
Awards
3
Offline
I'm looking for a bit of help adding a different background to splash screen on xc6 802 or if someone has a version of the apk already edited. At the moment it is just bg2 in drawable and is the same background throughout the app.

Any help would be appreciated
Add the splash background in the drawable folder compile the apk, Decompile the apk, Go to res/values/public find the id for bg2 will look something like this <public type="drawable" name="bg2" id="0x7f080556" /> make a note also find the id for the image you added using the name you called it make a note of that id, Go to smali in the search enter the id and then select SplashActivity.smali and swap the original id with your new background id. Also login background is done the same way but using LoginActivity.smali
 

dazbrin

Well-known member
Joined
Nov 16, 2021
Messages
215
Awards
3
Offline
You sir are my hero! Thankyou so so much
Add the splash background in the drawable folder compile the apk, Decompile the apk, Go to res/values/public find the id for bg2 will look something like this <public type="drawable" name="bg2" id="0x7f080556" /> make a note also find the id for the image you added using the name you called it make a note of that id, Go to smali in the search enter the id and then select SplashActivity.smali and swap the original id with your new background id. Also login background is done the same way but using LoginActivity.smali
 

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,913
Awards
4
Offline
the v6 802 recently posted on here with automatic full screen movie infos does not actually use bg2 on the main screen
it uses it in all other parts of the app so keep it simple and it will work well i used a darkish blue
.Screenshot 2024-01-10 132011.jpg
 
Top