[MOD] S5-Themed Settings - The Easy Way

Jul 19, 2014
2,566
1,877
193
Chicopee
So I found a really easy way to make our Settings app (SecSettings.apk) look like the S5 Settings app. I didn't figure this out, I'm just passing this along because I thought this was really cool and useful, @maxx35000 came up with this and I found it on his post here. You have to copy SecSettings.apk from /system/priv-app to your PC, and decompile using apktool (if you don't know how, look it up in xda, it's easy and there's plenty of tutorials). In the decompiled folder navigate to res/values and open bools.xml. Search for these lines:

Code:
    <bool name="settings_list">true</bool>
    <bool name="settings_tab">false</bool>
    <bool name="settings_grid">false</bool>
You want to set settings_list and settings_tab to false, and settings_grid to true, so it'll look like this:

Code:
    <bool name="settings_list">false</bool>
    <bool name="settings_tab">false</bool>
    <bool name="settings_grid">true</bool>
Save file, recompile, and push to phone. You obviously must set permissions to 644, and reboot once you've replaced the old SecSettings.apk with the new. All the usual stuff.

I've tried selecting several different settings options and everything has worked normally so far, with one exception: this mod created a fingerprints option, which force closes Settings every time I've tried to select it. My guess is this is an S5 feature not natively supported on our phone; I couldn't care less because I'll just avoid that one button, all I really wanted was for my settings to all be together on one screen. Next I'm gonna see about changing the settings color theme, it turns out you can theme the drop-down menu almost entirely from res/values/drawables, so who knows, maybe SecSettings will be that easy too. Anyway, I'm just sharing this because it's really easy and it really helped me, I hope it helps someone else too. Again I deserve no credit for this, max35000 posted this mod and I just wanted to share it here.
 
Last edited:
Jul 19, 2014
2,566
1,877
193
Chicopee
Is tab view working?
I can't say for sure since I haven't tried, but I think it should. It's just an xml edit, you're not touching the smali code so nothing really can go wrong in a ruin-your-phone sort of way. My suggestion would be to back up SecSettings.apk somewhere and give it a try. Worst case scenario is it causes Settings to force close when you try to start it, in which case just restore the backed up version.
 

_Spectrum

Member
Jan 31, 2015
29
10
0
So I found a really easy way to make our Settings app (SecSettings.apk) look like the S5 Settings app. I didn't figure this out, I'm just passing this along because I thought this was really cool and useful, @maxx35000 came up with this and I found it on his post here. You have to copy SecSettings.apk from /system/priv-app to your PC, and decompile using apktool (if you don't know how, look it up in xda, it's easy and there's plenty of tutorials). In the decompiled folder navigate to res/values and open bools.xml. Search for these lines:

Code:
    <bool name="settings_list">true</bool>
    <bool name="settings_tab">false</bool>
    <bool name="settings_grid">false</bool>
You want to set settings_list and settings_tab to false, and settings_grid to true, so it'll look like this:

Code:
    <bool name="settings_list">false</bool>
    <bool name="settings_tab">false</bool>
    <bool name="settings_grid">true</bool>
Save file, recompile, and push to phone. You obviously must set permissions to 644, and reboot once you've replaced the old SecSettings.apk with the new. All the usual stuff.

I've tried selecting several different settings options and everything has worked normally so far, with one exception: this mod created a fingerprints option, which force closes Settings every time I've tried to select it. My guess is this is an S5 feature not natively supported on our phone; I couldn't care less because I'll just avoid that one button, all I really wanted was for my settings to all be together on one screen. Next I'm gonna see about changing the settings color theme, it turns out you can theme the drop-down menu almost entirely from res/values/drawables, so who knows, maybe SecSettings will be that easy too. Anyway, I'm just sharing this because it's really easy and it really helped me, I hope it helps someone else too. Again I deserve no credit for this, max35000 posted this mod and I just wanted to share it here.
@thisisapoorusernamechoice Hello I am having trouble recompiling my SecSettings APK. I've successfully decompiled and edit the SecSettings to match the settings above, but when I try to recompile the app, it says "Could not find sources" and then a bunch of warnings. The frameworks I am using are framework-res.apk and twframework-res.apk, and my S4 Active is running 4.4.2 if it helps. Basically after that, I recompile, sign and push the new SecSettings.apk into my phone and then set the correct permissions. After the reboot, my Settings App disppears from my Desktop and list of apps installed. Maybe the disappearance has to do with the recompiling error. Anyway I was wondering if you could help me figure that's wrong. Here's an image of the error. http://i.imgur.com/ioH5vyI.png?1
 
Last edited: