[App][Code project][5.0+]Rom Control app for devs

Search This thread

daxgirl

Senior Member
Jun 30, 2012
4,047
9,175
Jerusalem
Merry Christmas everyone! !! Best wishes and most productive year! May all your families, loved ones and friends bring only joy into your lives. And may marshmallow be a blessed, easy to root, easy to mode, fun to develop for platform ?
Merry Christmas and Happy new year to all!!!

Sent from my SM-N920C using Tapatalk
 

Er. Aditya

Senior Member
Feb 28, 2014
4,358
6,130
BraveFort
Merry Christmas everyone! !! Best wishes and most productive year! May all your families, loved ones and friends bring only joy into your lives. And may marshmallow be a blessed, easy to root, easy to mode, fun to develop for platform ?
Merry Christmas and Happy new year to all!!!

Sent from my SM-N920C using Tapatalk

thankyou anna just letting you know its been a great year with you And wuby around :)
 
  • Like
Reactions: daxgirl

daxgirl

Senior Member
Jun 30, 2012
4,047
9,175
Jerusalem
So as this is a open project here is my source to build the app version "Phronesis Rom Control".
I build this to support the Note5 port for the note3 on the Phronesis rom.

Github Source

Dear @civato!
We have been looking for the source code for the Phronesis rom control and having forked the repo you linked we have found out that it's the original rom control source code. The source code that must be published is YOUR code. Your entire project that is. @DaOldMan is looking for the source code to make some additions for your rom and can't find your actual sources.
Please update your sources,
Anna
 
  • Like
Reactions: Wuby986

Er. Aditya

Senior Member
Feb 28, 2014
4,358
6,130
BraveFort
It is not feasible for Rom Control only as it utilizes the main sql database to store its entries. The entire sql database would have to be backed/restored as kmokhtar79 said.
I have done this for some time now.
The backup script:
Code:
#!/system/bin/sh

mount -o rw,remount /data

mkdir /sdcard/backups

cp -rf /data/data/com.android.providers.settings/databases /sdcard/backups
Restore script with auto reboot after restore:
Code:
#!/system/bin/sh

mount -o rw,remount /data

cp -rf /sdcard/backups/databases /data/data/com.android.providers.settings

pkill zygote

sir i dont know why but this method isnt working on my phone , it never creates the backups folder
can u please guide me what can be the issue ??
 

tdunham

Inactive Recognized Contributor
Jun 21, 2008
13,686
36,465
TampaBay
sir i dont know why but this method isnt working on my phone , it never creates the backups folder
can u please guide me what can be the issue ??
I'm not really sure why I put the mkdir command there, the folder always gets created for us on 5.0 & also 5.1.1 for other use so it probably was not necessary.

- First make sure you can run script from terminal or root browser to see if it works.
- Possibly scripts are not compiling with rom control. Decompile with apktool and see if the scripts are really there in assets/scripts of decompiled apk.
- Last (probably simplest), it is possible sdcard mkdir command is not working for you. Try removing mkdir command and experiment using an existing folder that always get created for every version of TW android like Media (I think android requires case sensitive syntax for folders so make sure you use upper case M for media in script name if you use that folder as example).

Edit: Rom Toolbox root explorer is excellent tool for testing/running scripts. I copy the script to SD and run from there with Rom Toolbox. Exit code of 0 means it is successful. Exit code of 1 means a syntax or command error.
 
Last edited:

Er. Aditya

Senior Member
Feb 28, 2014
4,358
6,130
BraveFort
I'm not really sure why I put the mkdir command there, the folder always gets created for us on 5.0 & also 5.1.1 for other use so it probably was not necessary.

- First make sure you can run script from terminal or root browser to see if it works.
- Possibly scripts are not compiling with rom control. Decompile with apktool and see if the scripts are really there in assets/scripts of decompiled apk.
- Last (probably simplest), it is possible sdcard mkdir command is not working for you. Try removing mkdir command and experiment using an existing folder that always get created for every version of TW android like Media (I think android requires case sensitive syntax for folders so make sure you use upper case M for media in script name if you use that folder as example).

Edit: Rom Toolbox root explorer is excellent tool for testing/running scripts. I copy the script to SD and run from there with Rom Toolbox. Exit code of 0 means it is successful. Exit code of 1 means a syntax or command error.

the main problem is itsworking for my friend and not for me :(
the script creates folder and we have same device , same android version
 
  • Like
Reactions: daxgirl

tdunham

Inactive Recognized Contributor
Jun 21, 2008
13,686
36,465
TampaBay
the main problem is itsworking for my friend and not for me :(
the script creates folder and we have same device , same android version

Have you tried his rom control?

---------- Post added at 01:18 PM ---------- Previous post was at 12:46 PM ----------

the main problem is itsworking for my friend and not for me :(
the script creates folder and we have same device , same android version
Possible something going on with your internal storage too.
Try wiping internal storage and try script again.

---------- Post added at 01:25 PM ---------- Previous post was at 01:18 PM ----------

the main problem is itsworking for my friend and not for me :(
the script creates folder and we have same device , same android version
Also, you did not say if your friend is using the same rom and rom control or different rom with different rom control.
 

Er. Aditya

Senior Member
Feb 28, 2014
4,358
6,130
BraveFort
Have you tried his rom control?

---------- Post added at 01:18 PM ---------- Previous post was at 12:46 PM ----------


Possible something going on with your internal storage too.
Try wiping internal storage and try script again.

---------- Post added at 01:25 PM ---------- Previous post was at 01:18 PM ----------


Also, you did not say if your friend is using the same rom and rom control or different rom with different rom control.

1. i am using rom control sir , it works on my previous version of rom
2. wiped internal memory with custom/stock recovery alot of times
3. previous version in new version i changed busybox installer by osmosis and su to 2.65

can any of these cause this ??
 

and2

Senior Member
Sep 25, 2008
1,612
1,200
Halle
1. i am using rom control sir , it works on my previous version of rom
2. wiped internal memory with custom/stock recovery alot of times
3. previous version in new version i changed busybox installer by osmosis and su to 2.65

can any of these cause this ??

Has your friend the same rom? May be on your rom is the internal storage writing bug not fixed?
 
  • Like
Reactions: Er. Aditya

thereassaad

Inactive Recognized Contributor
Aug 22, 2013
7,618
9,710
Bierut
both are using same G varient note 4
currently he is using F based rom and i am on G based rom
how to confirm and sort this issue ?



Delete ur data from internal sd exactly in Android/data/ then try it again if its still same probs then u need to wipe internal sd then 100% it should work unless u make something wrong somewhere mate ..

Sent from my SM-G920F using Tapatalk
 
  • Like
Reactions: Er. Aditya

daxgirl

Senior Member
Jun 30, 2012
4,047
9,175
Jerusalem
i ran those script codes via terminal it dsnt shows error but when i check my internel sd ...no folder is created
What's the exit code for the script?
Try running in scripter.
Make sure your busybox is installed and working properly. Check it. Try running busybox commands separately and see what you get as exit code.

Sent from my ACTUAL SM-N920C using transporter...
 

tdunham

Inactive Recognized Contributor
Jun 21, 2008
13,686
36,465
TampaBay
i am sorry dev's for spamming , i just found out latest SuperSu 2.65 was faulty
used old version and everythings fine again , somehow it was not mounting my initl sd
big thanks you everyone for helping
See, newer isn't always better. :rolleyes:
I'm several versions back on SU, but why update when it still maintains root without issue? ;)
 

Top Liked Posts

  • There are no posts matching your filters.
  • 105
    Hello ya'all,

    This is gonna be a long op, I dunno where to start...

    Sooooo... a while ago a friend (@tdunham) asked if we could share a settings app we made for our rom(s) (future rom(s).... as we are lazy bums). Since we mostly aimlessly wander around xda and help other devs instead of releasing our stuff, we figured... what the hell, we might as well make it into a source code project in a java-unexpirienced-dev format. So here we go!

    About the project:
    1. This app has a main function of coordinating content resolver entries between user end (your rom control app) and mods end (when you use content resolver to reitrieve settings storage database entry keys in various modded system apps).
    2. Basically, you create a preference item, such as switch preference f.e, and when the user switches it, an entry is being overwritten in Settings.System. From there, your modded apps, according to your mods, can read the value and do some stuff...
    3. Needless to say that this app requires, among many other things, your ability to mod system apps to use content resolver. If this doesn't mean anything to you, you're in a wrong place.

    If you wish to learn more about modding smali using content resolver, you need to first get introduced to 2 amazing threads:
    1. Creating and Understanding smali mods by @Goldie - if you are not fluent in that thread, you will not need this app.
    2. Galaxy s5 unified mods and guides thread by @tdunham - not all guides there are using content resolver, but lately more and more are. In any case it's a great place to ask questions, learn and contribute.

    Nuff said about modding, now to the project

    Project characteristics:
    1. The project is a source code project. Meaning we are not providing an application and you will not be using it by decompiling it with apktool. There are so many reasons for that that I don't know where to start. Mainly - it's bad enough samsung has made hackers out of all of us and we need to decompile and backdoor their system apps to mod them. What we can provide in source code - we will. We strongly believe in the freedom of code and we share it unconditionally (almost).
    2. Now what is that "almost? part? Simple... You do NOT need to credit us in any of your work, you do NOT need to thank us, you do NOT need to ask permission to use this project in your rom, you also do NOT need to donate to us (you also can't, we don't have a donate button). YOU DO NEED TO RESPECT THE FREEDOM OF CODE! That means that this code is given to you under the GNU GPL (General Public License). You can review it fully here.

    The most relevant part to our discussion is as following:
    ...For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights...

    That being said, the only thing that is required of you is that you keep sharing the code. We are not going to run around xda and "police" people using the code and not providing source. We rely on your word, that by agreeing to use the open source, you will keep it public and provide your sources as well for others to use. This VOIDS xda rule number 12, stating that each dev owns their work. Becasue the rule also states that work that is provided by a lisence that negates exclusivity, is therefore not exclusive. Any work based on this code is not to be held exclusive. And if another developer wants to use an app you built based on this code, you have an obligation to provide your sources and to keep those updated to most recent version of the app you release in order to be compliant.

    Thread rules and disclaimaers:
    1. The code is 100% original and written by us (myself and @wuby986) for this specific project. All the classes imported from public open source repositories are annotated with original developer signature and our modifications are annotated and dated as well.
    2. To answer most asked question so far - we don't know how it is different from a custom settings app by ficeto. We have never used it in our roms and we have nerver seen it's code (neither have you). Both apps share the same idea of integrating preferences into settings db using content resolver. You are free to use any app you like. We are not saying which app is better or worse. This is seriously not a competition.
    3. This project requires extensive knowledge in android development. As mentioned above, if you don't know how to mod system, this app is of no use to you. We will not be answering questions about smali mods.
    4. This project requires basic knowledge in operating android studio. You need to have it installed and operational in order to work with the code. You need to have android sdk and all the support libraries updated.
    5. This project requires SOME coding expirience or AT LEAST an open mind to getting a crash course. You will not be required to do heavy java lifting to use this app, but it would help if you knew alittle bit.
    6. We cannot teach you how to use android studio, debug problems related to it and so on. We will provide basic instructions as to how to add items to the navigation drawer list, how to add preference fragments with ease, we will explain the idea of out code and different preferences to you. Beyond that - it's on you. We cannot and will not teach you to be a programmer. If you want to know more - the web is wide and google is your friend.
    7. We cannot debug your code problems. This thread is for development discussion related to the project itself. If you need some requests, questions regarding exsisting code, remarks, improvements, you're more than welcome to join a github project and commit your code for everyone's benefit.

    Nuff said about rules, moving forward:

    Project sources:
    1. Github source for the Rom Control application is here
    2. Github source for the template to add preference fragment for this specific app is here

    Initial instructions:
    1. Download and install Android Studio and android sdk for your platform. Make sure all are updated
    2. Go to the preference fragment repository and download the master as zip. Extract the zip contents into /your android adt directory/android-studio/plugins/android/lib/templates/other/
    3. Reopen android studio
    4. File > New > Project from Version Control > Git
    5. The git repository is https://github.com/daxgirl/CustomSettingsForDevs.git
    6. Specify your parent directory and directory to contain the project (will be suggested by studio)
    7. Clone from git
    8. Done you have the project on your pc. Wait for it to sync and build gradle.

    The next couple of posts will explain extensively how to operate the app and create customize it to your rom's needs.

    XDA:DevDB Information
    [App][Code project][5.0+]Rom Control app for devs, App for all devices (see above for details)

    Contributors
    daxgirl, wuby986

    Version Information
    Status: Testing
    Current Stable Version: 1.0

    Created 2015-06-30
    Last Updated 2016-04-12
    38
    Basic info and app structure

    Basic info and app structure:
    1. This application is Navigation Drawer application material design style. It uses app cpmpat in order to use the pager adapter. This can make theming alittle bit tricky, but we provided 2 themes for now which you can modify in styles.
    2. Navigation drawer opens from the left and it contains for now example of navigation items list. For now we have 4 preference fragments and the last items is to set theme. You can add or remove fragments as you wish. The process will be fully explained.
    3. The fragments in the main view container are being replaced based on a position of clicked item in the navigation drawer list. Remember (we will get back to it again), positions in any array begin from 0. That means that for now we have 0,1,2,3,4 items in the arrays that construct the navigation items list. When we add one, we will need to add a title and an icon (both in corresponding positions) and also add our new fragment to a special method which makes the selected items to show specific fragment. We will discuss it at lenght.
    4. For now application contains only preference fragments. If you feel confident and know what you're doing, you can add all kinda fragments and navigation items (even more activities). We concentrate here on preference fragments, because this is the essence.
    5. Each navigation fragment has a java class which extends PreferenceFragment and an xml file inside res/xml folder, where the preferences exist for each fragment. Once launched for the first time, each fragment will create a shared preferences file inside our "home" directory. Our directory is in /data/data/com.wubydax.romcontrol/. There you will find several files and dirs. One of them is called shared_prefs. Inside it each fragment will host it's preference xml file. The name of this file will be identical (by our design) to the name of the xml file for that fragment in /res/xml folder. Once the fragment displayed for the first time, the shared preferences file for it is created and being populated by the default values you set. We will explain later which preferences must have defaultValue set and which preferences MUST NOT.
    6. If you open the java class for any PreferenceFragment, f.e. UIPrefsFragment.java, you will see that the code is very small. That is because we wanted to make things easier for you and we created a class called HandlePreferenceFragment.java, which manages all the work of the fragments.
    7. When you create a new Preference Fragment using a template for android studio we provided, The fragment and it's xml file are created for you automatically. All you will have to do is add it to the item selector in the navigation drawer, of course give it a name and an icon, and you can gop ahead and populate the xml file with preferences. You will not need to touch java anymore if you don't want to.
    8. We have the usual preferences that you know of, like SwitchPreference, CheckboxPreference, ListPreference etc, and we have our own "special" preferences to make your life easier. Those are IntentDialogPreference (to choose an app and write it's intent to the database for you to use in your mods to open apps), FilePreference (to control some booleans by creating and deleting file), we have 2 special kinds of PreferenceScreens: one for running shell scripts and one for creating intent to open apps from the control app. Those preferences will have special kind of keys, which we will demonstrate. You will not need to flash your scripts when flashing your rom. All your scripts will be managed in the assets folder and copied on run time to our home directory and executed from there. You don't need to worry about permissions, all is taken care of. Just place your scripts inside the assets folder before you compile the sources. Sae thing with opening apps as intents, all you need to do is put a main activity full name as PreferenceScreen key. Everything else is taken care of, including displaying icon. The preference will not show at all if the user doen's have an app installed. So no crashes upon clicking on non existing intents. They will just vanish from the list.
    9. The preference files inside the project on github contains BOGUS preferences to use as an example. We will go over all of them (most contained inside first fragment - UIPrefsFragment). They are all active. But they should not trigger any mod, as you should not have those keys in your database. You can see f.e. that preference fragment "Useful apps" has like 5 preferences for app intent. some of them have bogus intent. They will not display when you run your app. They are therer to demonstrate that if the app doesn't exist, you should not worry about FC of Rom Control. It takes care of itself.
    10. The first time the app boots it asks for root permissions. If the device is not rooted or permissions not granted, the app will never run. You all run rooted and modded roms, this app is not for stock. If you wish to disable this function, we will provide that option.
    11. Reboot menu - on the right upper corner of the action bar you will see a reboot icon. Clicking it will show a display of 5 reboot actions: reboot, hotboot, reboot recovery, reboot download, reboot systemui. Youc an access those easily no matter what fragment you're in. Clicking outside of them or clicking back button will make the menu disappear. clicking on one of them will result in immidiate reboot function. Those are root related finctions. We can make them no root dependant once you all use an app in your /system/priv-app. Which, btw, is where we recommend it goes.

    How does it work?
    For the first time an app is opened (or any time an ap is opened), there is a special method inside HandlePreferenceFragment that is called initAllKeys();. This method goes over all the preferences contained inside the shared preferences for that fragment. One by one it checks their key name, checks if they are of type boolean (true or false), of tipe integer (number) or of type string (words). Then it checks what preference they belong to. It checks if the key for that preference exists in your settings storage database, if it does not - it creates all keys. If the key exists in the database but is different from what the app has - it replaces the one in the app preferences with what you have in your system. That is why it's important for most preferences to set the defaultValue that you wish to be the default, beucase the first time the app launches, it will create all the keys in the system database. once the process is done(you will not see or feel it), your preferences are yours to control. Once a user clicks on Checkbox, if it's selected (isChecked), it writes 1 to the key for that preference inside the Settings.System. and vice versa. Any change in the preferences is being registered immidiately. So your mods can be updated (provided you have observers, of course, or else you might need to reboot apps, just like you always did). Inside the class HandlePreferenceFragment there is a method updateDatabase. it is being called from a method that "wacthes"/"listens" to any change in preference.

    That is, basically, all. This is how it works. Everything else is cosmetics made for your convinience and mostly based on your requests. F.e. running shell scripts, FilePreference, App picker preferences was requested by other developers to be included so we had to find a way to build in. Now you can all enjoy. Any further requests are welcome.


    Overall structure in studio:

    One you have opened the project in studio, you have the following structure tree on your left. Make sure you have chosen the "project" tab (far left edge of the screen) to see it:

    project-structure.png


    Inside the libs folder we have the roottools jar made by the amazing @Stericson and the next folder that is of interest is the src/main. This is where the app as you know it (from apktool) is hosted. You can see inside the res folder all our resources.

    If you need to change the icon for the app you need to place it inside mipmap folders. It's called ic_launcher.png. For nice app icons generator visit here . Inside the values-21 folder there is the styles.xml file that you need to edit if you want to change theme colors. Nice site for coherent material palette is here and google documentation is here.

    In the main drawables folder you will find those:
    main-drawables.png


    As you can see there are two images there that are relevant to you: header_image and header_image_light (for both themes). Thopse are the header images for the navigation drawer. You can replace them with your own. The reference to them is inside /layout/fragment_navigation_drawer.xml as you can see here:

    nav_drawer_header_layout.png
    .

    Here it's used as an attribute. You can read more about using attrs in android docs. Just replace the images and keep the names.

    Inside of the resolution dependant drawable folders you can find the images for the items in the navigation drawer:

    drawables-navdrawer.png


    Here you can replace, move and add your own. Good resources for icons are: here and here and you can find many more out there.

    Inside the assets folder we have a folder named scripts. It's important the name remains "scripts".

    assets-structure.png


    It's used in java code to copy the assets on runtime to our home dir. Inside scripts you put your shell scripts that you wish to run using the script running method. scripts have to be called with .sh in the end. When you create a PreferenceScreen that needs to run scripts, you give it a key like this: android:key = "script#nameofourscript". You do not add the .sh in the key. Look at the example inside ui_prefs.xml in PreferenceScreen with key android:key = "script#test". This runs the script that is currently found in assets. which basically writes into a file on your sdcard. Here you can put scripts as complex a you like. The code checkes for the exit code of the script. as long as it is 0, it will print a toast "executed successfully" upon clicking your preference. To try it run the app on your phone and click on a preference screen with summary "Click see what happens". Make sure your scripts are well formed and test them before including. Remember that you're under sudo. Linux shell will execute anything under sudo without asking.

    Inside the /res/xml folder are our preference xml files. This will be your main playground. In those files we will be adding the preference items to appear in each of your fragments.

    xml_prefs.png


    And finally for the java classes:

    classes-with-prefs.png


    Here is where all the work is being done in real time. If you don't have expirience, you won't have to go there besides when you need to add the more nav drawer items.




    Adding a new fragment and navigation drawer list item:

    1. Provided you read the OP instructions and cloned the Rom Control Preference Fragment template repository into /your android adt directory/android-studio/plugins/android/lib/templates/other/, you need to restart android studio and we are ready to go.

    2. Right click on the main java package of out application and navigate to New > Fragment > Fragment (6thGear Preference Fragment) like you can see on the picture below:

    add_new_fragment_tree.png


    Once you click on adding the fragment the foloowing window will open:

    new_fragment_window.png


    As you can see the initial names are: for fragment - BlankFragment and for xml blank_prefs. You can change it as you like. BUT! Leave the word Fragment. Once you change the FIRST part of the fragment name, the first part of the prefs file name will be changed automatically. See the img below:

    new_fragment_window_pm.png


    So we have chosen to create a new fragment called PowerMenuFragent and below that we have the preference xml name. the name is automatically generated as you put in your class name for the fragment. The java naming convention states that a class must begin with capital letter and all meaningful words in class name must also begin with capital letter. The xml name generator will split the word Fragment from your class name and make the other words into xml legal name form separated by under score and will add _prefs in the end. So it becomes power_menu_prefs.xml.

    Click "finish" and you have a new fragment class and a new xml file for it inside /xml folder. The fragment will look like this:

    new_fragment_window_java.png


    You don't need to edit it. It's done in template. It instantiates the class called HandlePreferenceFragment and refers to it's main methods. For more infor you can read my annotations in the HPF class.

    Your new xml file is now empty and contains an empty preference screen like so:

    new_fragment_window_xml.png


    We will populate it with preferences later.

    Now we need to make this new fragment REACHABLE for user. So we need to add an item to the navigation drawer sections. Let's do that:

    1. Open /values/strings.xml and find an array of strings. we will add our new item name in a place we want. In this case I will add it after the Framework section (in blue):
    Code:
    <string-array name="nav_drawer_items">
            <item>SystemUI Mods</item>
            <item>Phone Mods</item>
            <item>Framework and General</item>
            [COLOR="Blue"][B]<item>Power Menu</item>[/B][/COLOR]
            <item>Useful Apps</item>
            <item>Set Theme</item>
        </string-array>

    2. Now you will need a new icon to appear to the left of the section name in nav drawer. You can add your own icon at this point. It's a good practice to add images for all resolutions. But who are we kidding? You're making a rom for one device. So to remind you, s4, note3, s5 are xxhdpi and note4, s6 are xxxhdpi. I will use existing icon called ic_reboot.png for this section.

    3. Now we need to get our hands dirty and go into java alittle. Open MainViewActivity and find the following method. This method is well annotated for your use. So you can refer to it every time you add an item for reference of how-to. Observe the new blue item:
    Code:
     //Creates a list of NavItem objects to retrieve elements for the Navigation Drawer list of choices
        public List<NavItem> getMenu() {
            List<com.wubydax.romcontrol.NavItem> items = new ArrayList<>();
            /*String array of item names is located in strings.xml under name nav_drawer_items
            * If you wish to add more items you need to:
            * 1. Add item to nav_drawer_items array
            * 2. Add a valid material design icon/image to dir drawable
            * 3. Add that image ID to the integer array below (int[] mIcons
            * 4. The POSITION of your new item in the string array MUST CORRESPOND to the position of your image in the integer array mIcons
            * 5. Create new PreferenceFragment or your own fragment or a method that you would like to invoke when a user clicks on your new item
            * 6. Continue down this file to a method onNavigationDrawerItemSelected(int position) - next method
            * 7. Add an action based on position. Remember that positions in array are beginning at 0. So if your item is number 6 in array, it will have a position of 5... etc
            * 8. You need to add same items to the int array in NavigationDrawerFragment, which has the same method*/
            String[] mTitles = getResources().getStringArray(R.array.nav_drawer_items);
            int[] mIcons =
                    {R.drawable.ic_ui_mods,
                            R.drawable.ic_phone_mods,
                            R.drawable.ic_general_framework,
                            [B][COLOR="Blue"]R.drawable.ic_reboot,[/COLOR][/B]
                            R.drawable.ic_apps,
                            R.drawable.ic_settings};
            for (int i = 0; i < mTitles.length && i < mIcons.length; i++) {
                com.wubydax.romcontrol.NavItem current = new com.wubydax.romcontrol.NavItem();
                current.setText(mTitles[i]);
                current.setDrawable(mIcons[i]);
                items.add(current);
            }
    
            return items;
        }

    As you can see I added a line R.drawable.ic_reboot. What is it? This is an equivalent to public id in smali. It is in fact an integer. So it appears inside integer array called mIcons. Our respurces in android are referenced by capital R. then we have the resource type, in this case - drawable, and then the item name (without extension). Note the order of the id in the array, I added my string after the framework string. So I also add the id for the drawable after the id of the framework drawable. This is vital to understand, as the list is being populated on runtime based on items positions. Items in an array are separated by comma.

    4. Now open NavigationDrawerFragment class and you will find the same method there. Please add the same id in the same way there. You MUST do so in both classes every time.

    5. Now we go back to the MainViewActivity and we find the following method. it will be right after the getMenu() method we just edited. The method is called onNavigationDrawerItemSelected(int position). This method is responsible for performing action based on which navigation drawer item is clicked by a user. Positions are the positions of items in the List of our objects. So we have so far 6 items out arrays (strings and drawable id integers). That means their positions are 0,1,2,3,4,5 respectively. Look at the method as it appears in the original code:
    Code:
    @Override
        public void onNavigationDrawerItemSelected(int position) {
            /* update the main content by replacing fragments
            * See more detailed instructions on the thread or in annotations to the previous method*/
    
            setTitle(getMenu().get(position).getText());
            switch (position) {
                case 0:
                    getFragmentManager().beginTransaction().addToBackStack(null).replace(R.id.container, new UIPrefsFragment()).commitAllowingStateLoss();
                    break;
                case 1:
                    getFragmentManager().beginTransaction().addToBackStack(null).replace(R.id.container, new PhonePrefsFragment()).commitAllowingStateLoss();
                    break;
                case 2:
                    getFragmentManager().beginTransaction().addToBackStack(null).replace(R.id.container, new FrameworksGeneralFragment()).commitAllowingStateLoss();
                    break;
                case 3:
                    getFragmentManager().beginTransaction().addToBackStack(null).replace(R.id.container, new AppLinksFragment()).commitAllowingStateLoss();
                    break;
                case 4:
                    showThemeChooserDialog();
                    break;
    
            }
    
        }

    Here we have switch case based on position of an item. This is the same as saying: if the position of an item is 0, perform this action, else, if the position is 1, perform that action and so on. Only in this case we say: compiler, switch cases based on integer - in case 0: do something, in case 1: do something else. So we need to add an item after the framework section. Framework section has position of 2 (it's item number 3). So now we add our new fragment like so:
    Code:
     @Override
        public void onNavigationDrawerItemSelected(int position) {
            /* update the main content by replacing fragments
            * See more detailed instructions on the thread or in annotations to the previous method*/
    
            setTitle(getMenu().get(position).getText());
            switch (position) {
                case 0:
                    getFragmentManager().beginTransaction().addToBackStack(null).replace(R.id.container, new UIPrefsFragment()).commitAllowingStateLoss();
                    break;
                case 1:
                    getFragmentManager().beginTransaction().addToBackStack(null).replace(R.id.container, new PhonePrefsFragment()).commitAllowingStateLoss();
                    break;
                case 2:
                    getFragmentManager().beginTransaction().addToBackStack(null).replace(R.id.container, new FrameworksGeneralFragment()).commitAllowingStateLoss();
                    break;
                [COLOR="blue"][B]case 3:
                    getFragmentManager().beginTransaction().addToBackStack(null).replace(R.id.container, new PowerMenuFragment()).commitAllowingStateLoss();
                    break;[/B][/COLOR]
                case [COLOR="blue"][B]4[/B][/COLOR]:
                    getFragmentManager().beginTransaction().addToBackStack(null).replace(R.id.container, new AppLinksFragment()).commitAllowingStateLoss();
                    break;
                case [COLOR="blue"][B]5[/B][/COLOR]:
                    showThemeChooserDialog();
                    break;
    
            }
    
        }

    Note how the new case is now number 3 and the positions of the following cases need to be increased.

    Now we can run our app and and there is our new section item:
    Screenshot_2015-06-30-14-31-08.png

    Screenshot_2015-06-30-14-31-14.png


    That's it for this post. Post #3 we will talk about different preference kinds we have and how to use them.
    Till then...

    To be continued.....
    34
    General tips and tricks

    Some tips and tricks

    Running app and debugging:

    Android studio provides you with built in logcat. Not only that you can debug the app you're working on, you can debug any app you're modding too. Just need to specify the filter for the logcat and the package name. Dig in and you will find some cool features.

    You need to have unknown souces enabled and usb debugging enabled to run your compiled app directly on your device.

    1. You can install and run this app as user app. It does not need to be system app. For now no features require it. You can of course include it as system app in your rom. We recommend pulling the base.apk from data folder and pushing to /system/priv-app

    2. You do not need USB cable to debug and run your app from studio. There is anifty app I am using. You can download it here https://play.google.com/store/apps/details?id=com.ttxapps.wifiadb&hl=en. All you need to do is open the command line on your pc and type adb connect <ip number of your phone in the network>:5555. The app will provide you with an IP number.
    Screenshot_2015-07-01-14-55-41.png


    Now studio will recognize your device as USB debugging device even though it's not connected with usb cable. I just hate cables.......

    Including key specific functions:

    For now all our work is done automatically for us. You click a preference and the work is done. But what if you have a key that you want to do alittle more with than just write into database? I will give you an example.

    We have a SwitchPreference in our app that enables/disables call recording. That mod requires restart of InCallUI.apk. Now you can of course restart it by creating a Script Running PreferenceScreen item called Reboot InCallUI and it will be fine. That's what you have been doing so far. But let me show you what you can do now that you own your source code.

    We have two ways to kill that app. Silently (without user knowing - very cool) or informing the user. Let me show you how it would be done.

    Let's say you create a preference for call recording:
    Code:
    <[COLOR="red"]SwitchPreference[/COLOR]
                android:defaultValue="true"
                android:key="[COLOR="Red"]toggle_call_recording[/COLOR]"
                android:summaryOff="Call recording is disabled"
                android:summaryOn="Call recording is enabled"
                android:title="Enable/Disable Call Recording" />

    The two things we need to know is the key and the class instance of preference - which is SwitchPreference.

    Let us go to the java class HandlePreferenceFragments and find a method called public void onSharedPreferenceChanged(SharedPreferences sharedPreferences, String key){}}. In android studio you can search through class by pressing ctrl+f.

    In that method we have switch by the preference class name (INSTANCE). So we have this case:

    Code:
    case "SwitchPreference":
                    SwitchPreference s = (SwitchPreference) pf.findPreference(key);
                    s.setChecked(sharedPreferences.getBoolean(key, true));
                    break;

    What this means is: if the preference is of kind SwitchPreference, when the preference is changes, do something..... So.... let us do something with our SPECIFIC switch preference for our SPPECIFIC key!!!
    Let us try this:

    The silent way:

    Code:
    case "SwitchPreference":
                    SwitchPreference s = (SwitchPreference) pf.findPreference(key);
                    s.setChecked(sharedPreferences.getBoolean(key, true));
                    [COLOR="Blue"][B]if (key.equals("toggle_call_recording")) {
                        Command c = new Command(0, "pkill com.android.incallui");
                        try {
                            RootTools.getShell(true).add(c);
                        } catch (IOException e) {
                            e.printStackTrace();
                        } catch (TimeoutException e) {
                            e.printStackTrace();
                        } catch (RootDeniedException e) {
                            e.printStackTrace();
                        }
                    }[/B][/COLOR]
                    break;

    This will kill the InCallUI every time the user switches that switch. So what happened here? The user switched the switch, the boolean got written to the database (in a different method), then the app relevant to this key was restarted. Next time a user makes a call - the call recording will be updated!!!

    Now let us do it in a no silent way:

    Let us inform the user. We have a little method in that class called public void appRebootRequired(final String pckgName) { ...}. Let us try to use it...

    So let us go back to our onSharedPreferencesChanged method and instaed of the condition we used silently, we do something like this:

    Code:
    case "SwitchPreference":
                    SwitchPreference s = (SwitchPreference) pf.findPreference(key);
                    s.setChecked(sharedPreferences.getBoolean(key, true));
                    [COLOR="blue"][B]if (key.equals("toggle_call_recording")) {
                        appRebootRequired("com.android.incallui");
                    }[/B][/COLOR]
                    break;

    The user clicks on the preference and see what happens:

    Screenshot_2015-06-29-17-41-01.png


    Now for InCallUI it might be better to restart the app silently. Since the change is not visible to user anyway. But if you need to restart systemui, then it might be better to inform the user. So all you need to do is instead of passing a string "com.android.incallui" pass a string "com.android systemui". The method will do everything automatically. See how the dialog changes:

    Screenshot_2015-06-29-17-39-52.png


    Adding more than one special key

    If you need to add more than one special key (see popst #3 for instructions and explanations), you have 2 options:

    1. We can go on with the if/else conditions, like so:

    Code:
    case "SwitchPreference":
                    SwitchPreference s = (SwitchPreference) pf.findPreference(key);
                    s.setChecked(sharedPreferences.getBoolean(key, true));
                   [COLOR="blue"][B] if (key.equals("toggle_call_recording")) {
                        appRebootRequired("com.android.incallui");
                    } else if (key.equals("some_other_key")) {
                        //do something you want
                    } else if (key.equals("again_some_key")) {
                        //do something different
                    }[/B][/COLOR]
                    break;

    2. Or we make a switch for that based on key. Like so:

    Code:
    case "SwitchPreference":
                    SwitchPreference s = (SwitchPreference) pf.findPreference(key);
                    s.setChecked(sharedPreferences.getBoolean(key, true));
                    [COLOR="Blue"][B]switch (key){
                        case("toggle_call_recording"):
                            appRebootRequired("com.android.incallui");
                            break;
                        case("toggle_clock_visibility"):
                            appRebootRequired("com.android.systemui");
                            break;
                        case("some_other_key"):
                            //do something
                            break;
                        case("some_other_different_key"):
                            //do something different
                            break;
                    }[/B][/COLOR]
                    break;

    Please note:
    1. You can add the specific conditions to any preferences
    2. You need to add them to the same preference instance as the preference that the key belongs to. Right now I showed how to do it for switch preference. You can do the same for any preference. If the key belongs to checkbox preference, you need to put the conditions inside the case of the "CheckBoxPreference" and so on
    3. You need to make sure your condition comes AFTER our built in lines. Like in this case I added it after the initiation of the object and setChecked
    4. You need to finish your conditions BEFORE the main break; of the case.

    More to come at later time and per demand...
    28
    Handling different kinds of preferences:

    Now we roll with populating our preference fragments. Each preference fragment is unique for your needs, depends on your use, your modded apps and categories. All we do, as mentioned above, is provide you with preferences to communicate with your modded system apps using ContentResolver class.

    For each preference I will explain:
    1. Does it write preferences into shared preferences? and if it does...
    2. What kind of object it writes to shared preferences of our app?
    3. What kind of value we then write into SettingsSystem database?
    4. What kind of key it uses and why?

    SwitchPreference/CheckboxPreference:

    Images:

    switch.png

    checkbox.png

    You MUST provide defaultValue for ANY switch preference you create
    It writes boolean (true or false) into the shared preferences
    We copy it as integer (1 or 0) into the Settings.System database
    It mush have a unique key, none of existent in databse. It must be the same key as you use in your mod for that function. F.e. statusbar_clock_visibility. Clock can be either visible or invisible. So switch preference will serve us good here. Also will checkbox preference. In your mod when you retrieve and integer using ContentResolver you specify the default value (if the key is not found). You have to specify the same default value here. If in smaly it was 0x1,. then in the app it must be android:defaultValue = "true". YOU MUST SPECIFY DEFAULT!
    In preference xml inside your empty PreferenceScreen claws, you add this:
    Code:
    <SwitchPreference
                android:defaultValue="true"
                android:key="clock_visibility"
                android:summaryOff="Clock is hidden"
                android:summaryOn="Clock is visible"
                android:title="Set Clock Visibility" />
    Code:
    <CheckBoxPreference
                android:defaultValue="false"
                android:key="brightness_visibility"
                android:summaryOff="Brightness slider hidden"
                android:summaryOn="Brightness slider is visible"
                android:title="Notification Brightness Visibility" />
    This is all you need. The key will work automatically. The first time the user runs your app it will look for that key in the database, if it finds it, it will copy the value into our app and the switch will be set accordingly, if it does not find it, it will copy the defaultvalue of your preference to the database.
    Of course the proper way of using strings for title and summary is by using string resources. In android studio you can create strings resources after you have typed the string. F.e. click on one of the strings, like for title, and on your keyboard press alt+enter. You will be given an option to extract string resource. That is all up to you. If your app is only in english, you don't really need to do that.



    ListPreference:

    Usually you would create list preference by specifying <ListPreference..../>. We had added some functionality to native android preferences for List and EditText. So we have our own classes that extend those preferences. So when we create a list preference we use our own class, so the preference looks like this:

    Code:
    <com.wubydax.romcontrol.prefs.MyListPreference
                android:defaultValue="2"
                android:entries="@array/clock_position_entries"
                android:entryValues="@array/clock_position_values"
                android:key="any_clock_position"
                android:title="Status Bar Clock Position" />

    Once you open < in studio and start typing com..... it will give you the options of preferences existing in our app. Just choose the one you need and it will create the name for it. Don't worry if you mistype, it will not compile.
    List preference in android persists string. That means that it writes object of string type into the shared preferences. You need to create 2 string arrays for each list preference. One for Entries - what is displayed in the dialog as single choice items for user. and One is for entryValues (what is being written into the preferences). You can from your mod read them as integers or strings using content resolver. f.e., if your values are 200, 300, 400, android will persist them as strings. But when you restrieve them from database in your systemui smali mod, f.e., you can call either getInt (to get them as integers) or getString to get them as strings. Of course strings array like bread, milk, cookies cannot be retrieved as integer. But a string 200 can be either.

    When you retrieve a default value in your smali mod, you retrieve f.e. 200. so YOU NEED TO SET 200 as defaultValue. Or in the above case, it's 2. YOU MUST SPECIFY THE DEFAULT STRING!
    You do not specify summary for this preference, we take care of it in code. like so:

    list.png




    EditTextPreference:

    Code:

    Code:
    <com.wubydax.romcontrol.prefs.MyEditTextPreference
                android:defaultValue="simpletext"
                android:key="carrier_text"
                android:title="Set Custom Carrier Text" />

    This preference also persists string. It also writes string into the database. You retrieve it only as string. Because you can't control what user types. You don't want your modded systemui to crash because a user inputted "bread" and you are trying to read it as integer.
    YOU MUST SPECIFY THE DEFAULT STRING for EditTextPreference.


    ColorPickerPreference:

    Writes and integer into the sharedpreferences and we retrieve integer into the database.

    Color integers are special. I will not go into how and why. I have created a utility helper app for devs for this purpose. The app's main function is to convert hex string to integers or to reverse smali hex string. You can find an apk and explanations how to use it here.

    Remember, YOU MUST-MUST-MUST SPECIFY defaultValue for ColorPicker in our app!!! and YOU MUST USE ACTUAL INTEGERS to do so properly. Just trust us on that. It's no biggie. You use our app for hex converter to both create your default smali hex value and to create an integer for this app.

    The code for ColorPickerPreference:

    Code:
    <com.wubydax.romcontrol.prefs.ColorPickerPreference
                alphaSlider="true"
                android:defaultValue="-16777215"
                android:key="clock_color"
                android:title="Choose Clock Color" />

    As you can see this android:defaultValue="-16777215" is an actual integer for color black. You get it by using our app. You put 000000 into the first text field and click the button. The integer that you get is -16777215. We also have color preview available. It's a very useful tool. Use it and you can never go wrong with neither integers nor smali inverse hex values for your default color.
    Screenshot_2015-06-30-18-19-28.png


    Now note the special attribute called "alphaSlider" in the code. This is a boolean type. By default it's false. Meaning you can create color picker preference with or withour transparency option.



    SeekBarPreference - the SLIDER:

    Writes integer of the slideer progress into the database. The moment your finger has stopped tracking the bar, an integer is being registered into the sharedpreference and then being retrieved into the databasse.

    Code:
    <com.wubydax.romcontrol.prefs.SeekBarPreference
                min="0"
                unitsRight="Kb/s"
                android:defaultValue="10"
                android:key="network_traffic_autohide_threshold"
                android:max="100"
                android:title="Autohide Threshold" />

    YOU MUST SET DEFAULT VALUE!!!! IN INTEGER!

    You can specify special values such as unitsRight, like "%" or "Kb/s" and so on. You can specify the min and the max value. You probably better not specify the summary. But you can if you want.



    IntentDialogPreference - App Chooser:

    Code:
    <com.wubydax.romcontrol.prefs.IntentDialogPreference
                includeSearch="true"
                setSeparatorString="\##"
                android:key="choosen_app_gear"
                android:title="Choose App" />

    Screenshot_2015-06-30-02-28-12.png


    This is a very special preference kind. It was created by request from @rompnit. They use intents from database to open apps in certain mods. You will have to ask them on @tdunham thread how and when they use it. We created this preference from scratch specifically for them. This is a completely custom kind of android preference. It displays a dialog of all your LAUNCHABLE apps (apps that have default launch intent that can be retrieved by using PackageManager method getLaunchIntentForPackage. In other words - all apps that appear in your launcher will appear on the dialog.

    What happens when you click on an app? What is being written into preferences is a special kind of string. The srting might look like this: com.android.settings/com.android.settings.Settings or it might look like this com.android.settings##com.android.settings.Settings... this is what you need to create basic intent. You need package name and activity name. What separates them is up to you. You will need to split them in your smali mod into package name and activity name to create intent. We have created 2 special attributes for this preference:

    1. setSeparatorString =this is what will separate the package name from the class name. The default (if you don't specify) is "/". Remember that if you use chars that must be escaped in xml, f.e. like hash(#), you need to escfape them by backslash, like so setSeparatorString = "\##".

    2. includeSearch - this is a boolean type of attribute. It is false by default. If you specify true, the search field will appear on the dialog above the apps list, allowing your users to search for an app by name inside the list adapter. We also included a list alphabetical indexer. So it's up to you if it's necessary.

    Once the app is chosen, the summary for the preference is set to the app name and the icon on the right side will be the app icon.

    apppicker.png


    Your database will contain now the basic component for the intent. What you do with it in your smali is up to you.

    DO NOT SET DEFAULT VALUE FOR THIS PREFERENCE!!!



    FilePreference:

    This is very special kind of preference requested by @tdunham. What is does it creates and deletes file with a certain name in our home files dir. It is located at /data/data/com.wubydax.romcontrol/files

    Code:
    <com.wubydax.romcontrol.prefs.FilePreference
                android:key=[COLOR="red"]"testfile"[/COLOR]
                android:summaryOff="File doesn't exist"
                android:summaryOn="File exists"
                android:title="Test File Preference" />

    The reason this is used by some devs, apparently, is when you need to mod smali file, which originates in a class that does not take context as parameter. Without context you cannot call the ContentResolver, so you cannot retrieve from the database. So what you can do instead is create a boolean condition based on existence or non existence of a certain file. File class does not require context. All it needs is to be instantiated as object and be given a string as path. For exampple:
    Code:
    [COLOR="Green"]File[/COLOR] [COLOR="Blue"]file[/COLOR] = new [COLOR="green"]File[/COLOR]("[COLOR="Purple"]/data/data/com.wubydax.romcontrol/testfile[/COLOR]");
    means that object file of class File is a file located at /data/data/com.wubydax.romcontrol/ and called "testfile". In java class File you have a method (boolean) which is called "exists". So a condition can be made like this:
    Code:
    if(file.exists){
    int i = 1;
    } else {
    i = 0;
    }

    So you can create a boolean method that will return 0 or 1 based on existence of the file at certain location.

    This is the idea behind this preference.

    The key for this preference is THE NAME OF THE FILE.

    YOU DO NOT SPECIFY THE DEFAULT!!!


    The preference looks like switch preference. But it acts differently. Youc an specify summaryOn and Off as you need. It does not write into database. It just creates and deletes the file.



    Script executing PreferenceScreen:

    As entioned above you can create PreferenceScreen which will execute shell scripts upon click. Example:

    Code:
    <PreferenceScreen
                android:key=[COLOR="Red"]"script#test"[/COLOR]
                android:summary="Click see what happens"
                android:title="New Preference Screen" />

    Note the key format. It has to begin with script#! The part after the hash (#) is the name of the script you wish to execute, in this case the script is test.sh which you can find in the source you pulled inside assets folder..

    Where are the scripts??? You put them inside assets folder (see post #2). You name your scripts f.e. test.sh script (has to end with .sh). But you do not add the .sh extension to the string (we do that in code).

    Every time your app launches it checks for scripts in the assets folder. It wants to make sure all the scripts ar being copied to our home dir. Inside files folder there we create a folder called scripts. All your scripts will be automatically copied there from assets, given permission 0755 and ready to be executed.

    Wgen a user clicks on a Script Executing PreferenceScreen, the app looks if a script with that name exists in our files dir. If it does, it attemts to execute it. I have explained in post #2. We also check just in case that the script is executable. There is native java method to do that. So if you or your user just add a script to the scripts folder in home directory and forgot to make it 0755, we do that for you in java with this method:
    Code:
    if (script.exists()) {
                    [COLOR="Blue"][B]boolean isChmoded = script.canExecute() ? true : false;
                    if (!isChmoded) {
                        script.setExecutable(true);
                    }[/B][/COLOR]
                    Command command = new Command(0, pathToScript) {
                        @Override
                        public void commandCompleted(int id, int exitcode) {
                            super.commandCompleted(id, exitcode);
                            if (exitcode != 0) {
                                Toast.makeText(c, String.valueOf(exitcode), Toast.LENGTH_SHORT).show();
                            } else {
                                Toast.makeText(c, "Executed Successfully", Toast.LENGTH_SHORT).show();
    
                            }
                        }
                    };
                    try {
                        RootTools.getShell(true).add(command);
                    } catch (IOException e) {
                        e.printStackTrace();
                    } catch (TimeoutException e) {
                        e.printStackTrace();
                    } catch (RootDeniedException e) {
                        e.printStackTrace();
                    }
                }

    Make suer your scripts are of valid shell format, test them separately before you put them in the app. Be careful, all the scripts are being executed under sudo. Means anything you write shall be done. Do not make mistakes in your script. Adding su to your scripts is not necessary. We execute them as root anyway.

    So...

    1. Create a shell script and test it on your device
    2. Place it inside the assets folder of your app
    3. Call it f.e. killbill.sh
    4. Create a PreferenceScreen entry and givie it a key android:key = "script#killbill"
    5. Compile the app
    6. Clicking on that preference should execute killbill.sh which will now be foind in /data/data/com.wibydax.romcontrol/files/scripts/killbill.sh and have permissions 0755.


    DO NOT SET DEFAULT FOR PreferenceScreen EVER!!!



    Intent opening Preference Screen:

    Code:
    <PreferenceScreen
            android:key=[COLOR="Red"]"com.wubydax.gearreboot.RebootActivity"[/COLOR]
            android:summary="Opens TWSwipe app to help you choose a different swipe activity"
            android:title="Reset TWSwipe Action" />

    This is a regular preference screen, so it would seem, but it has a special function. Usually, in order to open an intent with PreferenceScreen, you need to specify a whole lot of intent rules, like action, target class, target package and so on. We have made your life easy. If you want to link to an app from your rom control application, all you need to do is to specify the activity you wish to run as a key to this preference.

    You are not allowed to use "." in any other preference key. If you use "." the app will read it as possible intent. If it cannot resolve it, it will make it disappear from the list.

    This kind of preference is fully automated. Once the app reads the key, it does all the work for you, it sets the icon for the preference as the app icon, it creates a viable intent.

    If the user doesn't have an app that you link to installed, the app will never appear in the preferences. So the user can never click on it. Because otherwise it would give FC to the app.



    Nested PreferenceScreen:

    If you include regular preference screen, you never need to set a key. Preference screen that envelops the items inside of it will always lead to a nested preference screen that has some included preferences. and so on. We have a loop running through your entire preference tree and detecting all your preference screen and differentiating them by their abilities (being script executing, being intents and so on).

    Nested Preference Screen would look like this:

    Code:
    [COLOR="Red"]<PreferenceScreen
                android:summary="New Preference screen"
                android:title="New Preference Screen">[/COLOR] [COLOR="Green"]<-- Start of nested preference screen[/COLOR]
                <PreferenceCategory android:title="new category" />
                <CheckBoxPreference
                    android:key="text_checkbox"
                    android:title="Checkbox" />
                <SwitchPreference
                    android:key="test_switch"
                    android:title="Switch" />
            [COLOR="Red"]</PreferenceScreen>[/COLOR] [COLOR="Green"]<-- End of nested preference screen[/COLOR]

    Inside of it you can have more preferences and more preference screens.



    PreferenceCategory:

    Preference category is an enveloping kinda preference. It is different in color and appearence then the rest. It makes sub-portions of preference screen look separate from each other and easier to identify. F.e.:

    Code:
    <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
       [COLOR="Red"] <PreferenceCategory android:title="Status Bar Mods">[/COLOR] [COLOR="Green"]<-- start of preference category[/COLOR]
            <SwitchPreference
                android:defaultValue="true"
                android:key="clock_visibility"
                android:summaryOff="Clock is hidden"
                android:summaryOn="Clock is visible"
                android:title="Set Clock Visibility" />
            <CheckBoxPreference
                android:defaultValue="false"
                android:key="brightness_visibility"
                android:summaryOff="Brightness slider hidden"
                android:summaryOn="Brightness slider is visible"
                android:title="Notification Brightness Visibility" />
            <com.wubydax.romcontrol.prefs.MyListPreference
                android:defaultValue="2"
                android:entries="@array/clock_position_entries"
                android:entryValues="@array/clock_position_values"
                android:key="any_clock_position"
                android:title="Status Bar Clock Position" />
            <com.wubydax.romcontrol.prefs.MyEditTextPreference
                android:defaultValue="simpletext"
                android:key="carrier_text"
                android:title="Set Custom Carrier Text"
                />
            <com.wubydax.romcontrol.prefs.ColorPickerPreference
                alphaSlider="true"
                android:defaultValue="-16777215"
                android:key="clock_color"
                android:title="Choose Clock Color" />
            <PreferenceScreen
                android:key="script#test"
                android:summary="Click see what happens"
                android:title="New Preference Screen" />
            <com.wubydax.romcontrol.prefs.SeekBarPreference
                min="0"
                unitsRight="Kb/s"
                android:defaultValue="10"
                android:icon="@null"
                android:key="network_traffic_autohide_threshold"
                android:max="100"
                android:title="Autohide Threshold" />
            <PreferenceScreen
                android:summary="New Preference screen"
                android:title="New Preference Screen">
                <PreferenceCategory android:title="new category" />
                <CheckBoxPreference
                    android:key="text_checkbox"
                    android:title="Checkbox" />
                <SwitchPreference
                    android:key="test_switch"
                    android:title="Switch" />
            </PreferenceScreen>
            <com.wubydax.romcontrol.prefs.IntentDialogPreference
                includeSearch="true"
                setSeparatorString="\##"
                android:key="choosen_app_gear"
                android:title="Choose App" />
            <com.wubydax.romcontrol.prefs.FilePreference
                android:key="testfile"
                android:summaryOff="File doesn't exist"
                android:summaryOn="File exists"
                android:title="Test File Preference" />
        [COLOR="red"]</PreferenceCategory>[/COLOR]  [COLOR="Green"]<-- end of PreferenceCategory[/COLOR]
    
    
    </PreferenceScreen>


    This is it for now, more per demand and need. Have fun!
    12
    So I wanted to share with you all how to create an "About ROM" fragment. This way will give you the option of a different logo depending on the selected theme :)
    Screenshots:

    DVsnomvv
    DkjVUC7c


    - First off.. Create a new fragment as you would any other. We'll come back to this.
    - Because we want the logo to change between light/dark themes, we need to create an attribute for it. Go to values\attrs.xml and add :
    Code:
    <attr name="my_logo" format="reference"/>

    - Add your logos to the drawable folder. We'll use 'logo_light.png' & 'logo_dark.png' for naming (my png size is set at 490x191 for reference).
    - Open values-v21\styles.xml and add the resources appropriately.
    • For "Theme.AppCompat.NoActionBar" add
      Code:
      <item name="my_logo">@drawable/logo_dark</item>
    • For "Theme.AppCompat.Light.NoActionBar" add
      Code:
      <item name="my_logo">@drawable/logo_light</item>

    - Now we need to create a new "layout resource file" in res\layout. Name it 'my_logo'.
    - So within my_logo.xml, replace everything with this:
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="vertical"
        android:gravity="center"
        android:layout_width="wrap_content"
        android:layout_height="match_parent">
    
        <ImageView
            android:layout_width="fill_parent"
            android:layout_marginLeft="45dp"
            android:layout_marginRight="45dp"
            android:layout_height="wrap_content"
            android:src="?my_logo" />
    </LinearLayout>

    - Getting back to the new fragment you created, this is the way mine is laid out:
    Code:
    <?xml version="1.0" encoding="utf-8"?>
    <PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
    
        <PreferenceScreen
            android:layout_width="match_parent"
            android:layout_height="135dp"
            android:layout="@layout/my_logo" >
        </PreferenceScreen>
    
        <PreferenceCategory
            android:title="External Links" />
        <PreferenceScreen
            android:icon="@drawable/xda"
            android:title="XDA ROM Thread"
            android:summary="Click to visit the ROM thread">
            <intent
                android:action="android.intent.action.VIEW"
                android:data="http://xdaforums.com/sprint-galaxy-s5/development/rom-v5-0-mod-control-floating-windows-t3016692" />
        </PreferenceScreen>
        <PreferenceScreen
            android:icon="@drawable/darksyde"
            android:title="Team Darksyde Themes"
            android:summary="By willowmaker420 and JoeyDuran ">
            <intent
                android:action="android.intent.action.VIEW"
                android:data="http://xdaforums.com/sprint-galaxy-s5/themes-apps/theme-mod-t3043481" />
        </PreferenceScreen>
        <PreferenceCategory
            android:title="MOAR ROM Developers" />
        <PreferenceScreen
            android:icon="@drawable/tdunham"
            android:title="tdunham"
            android:summary="The mod master" >
            <intent
                android:icon="@drawable/tdunham"
                android:action="android.intent.action.VIEW"
                android:data="http://xdaforums.com/member.php?u=1042140" />
        </PreferenceScreen>
        <PreferenceScreen
            android:icon="@drawable/rompnit"
            android:title="rompnit"
            android:summary="What's he do?">
            <intent
                android:icon="@drawable/rompnit"
                android:action="android.intent.action.VIEW"
                android:data="http://xdaforums.com/member.php?u=1167171" />
        </PreferenceScreen>
        
    </PreferenceScreen>

    ** You have the logo at the top referenced from "@layout/my_logo", followed by the links to various things..

    - Finally 'intent' will pull the icons automatically, and in this case because they are links it will pull a generic system icon so we need to kill that. The side effect it.. it will kill automatic pulling of icons across all intent. Because of this you will need to define your icons like above using android:icon="@drawable/my_icon_here" or an icon just won't show (No biggie in many cases).

    - To kill the icons open HandlePreferenceFragments.java and find 'public void allGroups'
    -- Remove everything in RED
    Code:
    public void allGroups(Preference p) {
            PreferenceScreen ps = (PreferenceScreen) p;
            ps.setOnPreferenceClickListener(this);
    [COLOR="Red"]        
            if(ps.getIntent()!=null){
                Intent intent = ps.getIntent();
                try {
                    Drawable iconFromIntent = c.getPackageManager().getActivityIcon(intent);
                    ps.setIcon(iconFromIntent);
                } catch (PackageManager.NameNotFoundException e) {
                    Map<Preference, PreferenceScreen> preferenceParentTree = buildPreferenceParentTree();
                    PreferenceScreen preferenceParent = preferenceParentTree.get(ps);
                    preferenceParent.removePreference(ps);
                }
            }
                /*Initiate icon view for preferences with keys that are interpreted as Intent
                *For more info see OnPreferenceClick method*/
            if (ps.getKey() != null) {
                if (ps.getKey().contains(".")) {
                    int lastDot = ps.getKey().lastIndexOf(".");
                    String pkgName = ps.getKey().substring(0, lastDot);
                    try {
                        //if application package exists, we will set the icon successfully
                        Drawable icon = c.getPackageManager().getApplicationIcon(pkgName);
                        ps.setIcon(icon);
                    } catch (PackageManager.NameNotFoundException e) {
                        e.printStackTrace();
                        /*In case of exception, icon will not be set and we will remove the preference to avoid crashes on clicks
                        *To find the parent for each preference screen we use HashMap to build the parent tree*/
                        Map<Preference, PreferenceScreen> preferenceParentTree = buildPreferenceParentTree();
                        PreferenceScreen preferenceParent = preferenceParentTree.get(ps);
                        preferenceParent.removePreference(ps);
    
                    }
                }
            }[/COLOR]
    
            for (int i = 0; i < ps.getPreferenceCount(); i++) {
                Preference p1 = ps.getPreference(i);
                if (p1 instanceof PreferenceScreen) {
                    /*As we descend further on a preference tree, if we meet another PreferenceScreen, we repeat the allGroups method.
                    *This method will loop untill we don't have nested screeens anymore.*/
                    allGroups(p1);
    
                }
            }
        }

    -- So the final method should look like this:
    Code:
        public void allGroups(Preference p) {
            PreferenceScreen ps = (PreferenceScreen) p;
            ps.setOnPreferenceClickListener(this);
    
            for (int i = 0; i < ps.getPreferenceCount(); i++) {
                Preference p1 = ps.getPreference(i);
                if (p1 instanceof PreferenceScreen) {
                    /*As we descend further on a preference tree, if we meet another PreferenceScreen, we repeat the allGroups method.
                    *This method will loop until we don't have nested screens anymore.*/
                    allGroups(p1);
    
                }
            }
        }

    That's all! :D