How to Remove the text from main icons SMARTERS

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,935
Awards
4
Offline
if you intend to dabble with apks i would strongly advise you to get the paid version of the apk , you will be using it a lot.
 

ReaperDevil7

Well-known member
Joined
Aug 23, 2021
Messages
557
Awards
3
Offline
if you intend to dabble with apks i would strongly advise you to get the paid version of the apk , you will be using it a lot.
How to get paid version as only give me wechat or another option in Chinese
 

FyahRas

Active member
VIP Member
Joined
Jul 31, 2021
Messages
156
Awards
3
Offline
How Do I Make The Background Of The Icons Transparent
Tried Changing
res->values->colors.xml
<color name="dashboard_last_updated_color">#00000000</color>
Its Still Blue
 

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,935
Awards
4
Offline
That's an actual pert of the icon? You need to use .png images that have transparent backgrounds
 

v2sjb

New member
Joined
May 16, 2021
Messages
6
Offline
SEARCH THESE in res>values>strings


628 <string name="live_tv">LIVE TV</string>

833 <string name="on_demand">MOVIES</string>

1072 <string name="series1">SERIES</string>

Line numbers not always the same. Change above to below to clear LIVE TV SERIES and MOVIES.

628 <string name="live_tv"> </string>


833 <string name="on_demand"> </string>

1072 <string name="series1"> </string>
 

Newguyapk

Member
VIP Member
Joined
Apr 26, 2021
Messages
92
Awards
2
Offline
new to this also, how do i find or change the main background on smarters, the one where you enter user info, want to change the blue/pinkish background,, thx as always this site rocks..
 

shahin58

Active member
Joined
Dec 1, 2022
Messages
29
Awards
2
Offline
How Do I Make The Background Of The Icons Transparent
Tried Changing
res->values->colors.xml
<color name="dashboard_last_updated_color">#00000000</color>
Its Still Blue
#0000ffff
 

Hopper

Active member
VIP Member
Joined
Feb 25, 2023
Messages
179
Awards
3
Offline
Hi, will removing the text this way in V3 work the same, and wll it effect any other menu in the settings, asking as I did this for catch up and also lost the heading in player settings, maybe doing something wrong. Thanks
 

G-man

Well-known member
Joined
Apr 16, 2021
Messages
1,935
Awards
4
Offline
Hi, will removing the text this way in V3 work the same, and wll it effect any other menu in the settings, asking as I did this for catch up and also lost the heading in player settings, maybe doing something wrong. Thanks
it is same format for v3 yes , if you note in the video i start by looking for LIVE TV and get a few hits , as I am not 100% sure which one it is I put a 1 on the end of the one i THINK it is ?
saved out and tested and bingo i was right so went back in and then was safe to remove LIVE TV1 thats why i put the 1 on the end of something i wanted to change its a way to check if you have the correct entery
edit: by the looks catchup uses the same string for both player settings and the icon on main screen m8
 

Hopper

Active member
VIP Member
Joined
Feb 25, 2023
Messages
179
Awards
3
Offline
I'll give this a try as I did it by going into all layouts and adding android:visibility="gone"
 

Hopper

Active member
VIP Member
Joined
Feb 25, 2023
Messages
179
Awards
3
Offline
it is same format for v3 yes , if you note in the video i start by looking for LIVE TV and get a few hits , as I am not 100% sure which one it is I put a 1 on the end of the one i THINK it is ?
saved out and tested and bingo i was right so went back in and then was safe to remove LIVE TV1 thats why i put the 1 on the end of something i wanted to change its a way to check if you have the correct entery
edit: by the looks catchup uses the same string for both player settings and the icon on main screen m8
Ya thought that so had to do it the long way and add the line android:visibility="gone" to layout out's
 

Sean the destroyer

Member
VIP Member
Joined
Dec 7, 2022
Messages
46
Awards
1
Offline
The easiest way is with apk editor. decode partial files, press strings at the bottom of the screen and type in search the exact text you are looking for (case sensitive) you can then delete or rename the text. Then compose.
 
Last edited:

Hopper

Active member
VIP Member
Joined
Feb 25, 2023
Messages
179
Awards
3
Offline
The easiest way is with apk editor. decode partial files, press strings at the bottom of the screen and type in search the exact text you are looking for (case sensitive) you can then delete or rename the text. Then compose.
Yes for most but as mentioned above catch up is linked to main screen and also settings page so doing this will remove it from there also, so need to do it the long way
 

Sean the destroyer

Member
VIP Member
Joined
Dec 7, 2022
Messages
46
Awards
1
Offline
Yes for most but as mentioned above catch up is linked to main screen and also settings page so doing this will remove it from there also, so need to do it the long way
It is but they are different strings so it doesnt affect it. hasn't for me anyway as long as you delete the right ones. i number them all first to see which goes where.
 
Top