[LIB] Header2ActionBar | 06.12.2013 - IDEs, Libraries, & Programming Tools

Hey there,
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Header2ActionBar is a library which implements the fading action bar effect that can be seen in the new Play Music and Google Newspaper apps.
Download the sample app
Usage:
Using the library is really simple, just look at the source code of the provided samples. I'll post more samples soon.
License:
Code:
Copyright (C) 2013 [email protected] <[email protected]>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Source code:
To get a copy of the source code, visit my repo at GitHub.
There no pre-compiled JAR yet.
Thanks:
Thanks to the TeamFun channel at freenode! You guys yawns as always
Have fun with Header2ActionBar and don't forget to yawn and to contribute your own code!

Thanks for the project
AChep said:
Hey there,
Have fun with Header2ActionBar and don't forget to yawn and to contribute your own code!
Click to expand...
Click to collapse
Thanks for your efforts and project, wanted to know is it possible to use this with FragmentActivity ?
i mean my current project supports android 3.0 + and i am extending my activity from FragmentActivity to have left drawer.
and i see that i can have action bar in 2.0 + using your project,
but than i found that activity is extended from header2ActionBar

yogi.306 said:
Thanks for your efforts and project, wanted to know is it possible to use this with FragmentActivity ?
i mean my current project supports android 3.0 + and i am extending my activity from FragmentActivity to have left drawer.
and i see that i can have action bar in 2.0 + using your project,
but than i found that activity is extended from header2ActionBar
Click to expand...
Click to collapse
You can make the Navigation Drawer inside of the Activity too. If you doesn't want to do it - use HeaderFragment and copy-paste code from the FadingActionBarActivity.

thanks for your efforts, really nice.

I tried the sample app. It seems that it really lags on an HTC one Google edition with stock kitkat 4.4
Sent from my HTC One using XDA Premium 4 mobile app

solidd_swa said:
I tried the sample app. It seems that it really lags on an HTC one Google edition with stock kitkat 4.4
Sent from my HTC One using XDA Premium 4 mobile app
Click to expand...
Click to collapse
Hmmm... Probably that's because of the "floating height" enabled. But, anyway, strange that HTC lags on it. I'll try to do something with that.
PS: Does it lag when the header is invisible too?

Looks beautiful. I really like this. It is perfect for a project I'm working on.
Thank you
PS. Demo app is smooth and works well
Sent from my Galaxy Nexus using Tapatalk

Also, question. I assume that this won't interfere with a search function in the action bar, correct? (My goal is to have a search similar to the gmail app)
Sent from my Galaxy Nexus using Tapatalk

David 617 said:
Also, question. I assume that this won't interfere with a search function in the action bar, correct? (My goal is to have a search similar to the gmail app)
Sent from my Galaxy Nexus using Tapatalk
Click to expand...
Click to collapse
Yeah. It should work fine. :fingers-crossed:

nice work.

Is it possible to make the action bar a gradient instead of transparent (similar to the Google Music app) so the action bar icons will be visible against it?
Thank you
Sent from my Galaxy Nexus using Tapatalk

Noob question
Hey AChep,
i am noob in development..
please tell me what coding should i have to do to use this library...

architjn said:
Hey AChep,
i am noob in development..
please tell me what coding should i have to do to use this library...
Click to expand...
Click to collapse
Look at the demo that's included.
Sent from my Nexus 4 using Tapatalk

Related

AuthenTec Releases Fingerprint SDK for Android / Atrix

http://www.authentec.com/News/ViewN...gerprint-Sensor-Software-Development-Kit.aspx
Good news for people looking to develop for the Atrix fingerprint sensor!
that's awesome. I'll send that to [email protected] maybe it would help with WL
We already have an App in the market that uses Fingerprint scanner to lock apps etc.! It's called DataDefender!
Inspiredwire said:
http://www.authentec.com/News/ViewN...gerprint-Sensor-Software-Development-Kit.aspx
Good news for people looking to develop for the Atrix fingerprint sensor!
Click to expand...
Click to collapse
Hecks yea. Putting the fingerprint scanner on a CM Atrix will be that much easier.
And here is the SDK so you don't have to create a stupid account to download!
*mod edit* - link removed at the request of developer. Please register if you'd like to use the SDK.
Just realized that the App "DataDefender" that supports Fingerprint scanner is made by AuthenTec themselves. That explains that!
HMMM... This will be great for GibberTalk!
Update: the use of this app is for all future fingerprint readers as well as long as the framework exists. To use it, you check if the framework exists with an existing command, and to verify, that 'swipe to continue' message pops up.
Great success!
Now i have a weekend project to start messing around.
Yes! It's about time. I thought the scanner was only good for unlocking the phone
It eats gingerbread!... It eats cherry π!... Its an Alien! no it's just my Atrix.
Code:
private void setFPvari() {
if (AuthentecMobile.AM2ClientLibraryLoaded()) {
/* Fingerprint software framework is present */
/* May proceed with the fingerprint security */ }
else
{ /* Fingerprint software framework is not present… */ /* Make other arrangements for security */ }
is my code (its copied straight out of the docs that they provide) and it is giving me the old Cannot make a static reference to the non-static method AM2ClientLibraryLoaded() from the type AuthentecMobile error. I've imported everything I need into my class.
Update: Apparently they don't mention that you have to instantiate it... the example they show shows it as static.
Make sure you instantiate it with context as the parameter.
I'm just glad to see that it has more uses than just unlocking the phone. Something like that can be very versatile for security.
Please note that prior to release YOU MUST GET YOUR APP APPROVED BY AUTHENTEC otherwise they will not grant you permission to release it with the library included... then you hit some kind of infringement
Trolling from my ATRIX 4G on probably the crappiest main US carrier
This will hopefully make it easier to work in [the fingerprint sensor] with CM7 (I haven't clone the newest from the ATRIX dev team in to my working directory yet, so fingerprint could be fixed since I last tried it). Though licensing will be a pain.
I will see if I can work this in and offer a pull request. I hope its works like we would want it.
Sent from my MB860 using XDA App
This is good for cm7 right
Sent from my MB860 using XDA Premium App
SS2006 said:
This is good for cm7 right
Sent from my MB860 using XDA Premium App
Click to expand...
Click to collapse
Read my above post. Yes, I think it will he but I don't have my laptop with the source code in front of me and so I cannot say for sure.
Sent from my MB860 using XDA App
They were saying in IRC that they are trying to build this in to CM7.
it'd be cool if they could have the sensor work to secure individual apps in CM7, like messaging etc.
AuthenTEC might take you to court if you build it into cm7... :/ licensing is free as long as it meets their security check (no misuse of fingerprint app).
Trolling from my ATRIX 4G on probably the crappiest main US carrier
Mgamerz said:
AuthenTEC might take you to court if you build it into cm7... :/ licensing is free as long as it meets their security check (no misuse of fingerprint app).
Trolling from my ATRIX 4G on probably the crappiest main US carrier
Click to expand...
Click to collapse
Well, will building it into CM7 be misusing the framework? I doubt it. While I don't know the company offhand, I wouldn't be surprised if some of their development team is waiting for cyanogenmod for their Atricies
Yes, I'm sure. But it must meet security requirements AuthenTec is all about security, not just biometrics.
Anyways, the Atrix has a built in secret part of the fingerprint framework that I haven't seen before:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
This is from their Advanced SDK (that I have ) when you use get and store credential... after using it it's pretty confusing (order of steps is really weird) so I'm not surprised only the index finger works for normal scanning.
These images (swipe to continue, swipe a finger to save data to) are located inside of the framework.
And your building into CM7 would always pop up the 'swipe to continue'. I doubt they would release the source (as putting it in to the framework probably cost licence fees to motorola) because it would be a security risk... you'd have to use the SDK, and there is no way to authenticate without the popup (although the moto lock screen does it)
Would like to follow up with a mention that you need an internet permission (I think cause TSM has to validate the key... or something?) that the docs don't mention at all.

DroidTools - The best android utility available for Mac, period.

About
A little about how this app came to be! It’s really quite simple, regular users shouldn’t have to fumble with the terminal to get a custom device experience.
We quickly realized after getting a boat load of Nexus devices that flashing via terminal with all our specific tweaks took too long. Don’t get the wrong idea we love the terminal, but we just thought, for the people out there who love their Android device and may not love code there must be a better way. We started coding, and DroidTools was born. It’s simple, easy to use, and good looking.
DroidTools is an Android utility that provides the same capabilities you'd find using ADB terminal commands available from Google, the difference being this application presents a more user friendly experience for the somewhat novice user. (Research still required) to understand what and why for example you'd wish to flash a different baseband ect. This utility doesn't have embedded phone home capabilities, and this application doesn't store ANY device specific information. If you wish to use the integrated wifi capabilities DroidTools will store only the IP address of your device to attempt connection (at the time of your choosing), and can be reset at anytime. We developed this application because we simply wanted to contribute to the Android community, and in that spirit we've made this application available at no cost to you.
Get your FREE copy today! Download DroidTools
Our website has passed all available online spyware, malware, and virus scans, and our software passes all the same tests.
We invite everyone to use https://www.virustotal.com/en/ or the detection method of their choosing.
SHA256: b7d1fdb4160012de92cff4acf1a4e69c0c66fa178219f9c87c69a87ff0eb9a16
File name: DroidTools.dmg
Detection ratio: 0 / 46
Analysis date: 2013-03-09 00:38:50 UTC ( 0 minutes ago )
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
UPDATE:
Version 1.21 adds support for the HTC One (with embedded token capture), optimizations and bug fixes... Enjoy!
Just wanted to post an update and say thank you for the underestimated interest in our free software for Android users.
Our software has been downloaded 10k times in the last 24 hours alone, and the number continues to accelerate.
Feel free to give us ideas, or features you'd like to see in an update.
We also recognize the endless talent of designers & coders, if you believe you can contribute and would like to, contact us.
XenRockSoftware,
Make it available for 10.6 lol
Sent from my Xoom using xda premium
Esteway.619 said:
Make it available for 10.6 lol
Sent from my Xoom using xda premium
Click to expand...
Click to collapse
Due to the many requests we've received, an update has been issued adding support for OS X 10.6+
The download is available now.
*Updating from within the app is simple
With the app open simply click help in the menu bar and choose update to get the latest version.
We appreciate the feedback.
XenRockSoftware Team,
Please make a Windows version of this, Thanks!
What exactly does this offer that any other root toolkit doesn't like wugfresh ect.
Sent from my Galaxy Nexus using xda premium
slayr76 said:
What exactly does this offer that any other root toolkit doesn't like wugfresh ect.
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
Its compatible with Mac osx. Those toolkits are for windows only.
Sent from my Galaxy Nexus using xda premium
Thanks for this awesome tool!! :good:
It keeps crashing on me. It won't launch.
Sent from my Galaxy Nexus using xda premium
Esteway.619 said:
It keeps crashing on me. It won't launch.
Sent from my Galaxy Nexus using xda premium
Click to expand...
Click to collapse
Check PM. We will assist in resolving your particular issue, we will then update the cause and resolution in this main thread.
FightingPixel said:
Please make a Windows version of this, Thanks!
Click to expand...
Click to collapse
We are currently looking into providing a Windows version of this application stay tuned...
XenRockSoftware said:
We are currently looking into providing a Windows version of this application stay tuned...
Click to expand...
Click to collapse
I think it would be better if you focus on the Mac version first, because there are tools enough for Windows already.
Sent from my Galaxy Nexus using xda app-developers app
Still won't open for me.
Sent from my Galaxy Nexus using xda premium
Great to be back on Xda, just sharing an update to version 1.21 which adds support for unlocking the HTC One bootloader. Don't worry we'll auto capture your device token as well, we keep it simple. :laugh:
Happy Droid Life,
XenRockSofware

[APP] Floating Example

There are a lot of apps coming which float above other apps like Chatheads for Facebook. So I made an example app showing how they work.
It is basically a view in a WindowManager which is inflated in a Service. With a few more tweaks, it can be made to change positions on the fly.
I made this for API 10+ but it should work with lower versions just fine.
Here is how it looks:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Click to expand...
Click to collapse
This is just an example. The possibilites are countless.
Hope it helps developers create other apps like Floating Notifications and such.
Full sources can be found on my Github here.
Sample app can be found here.
Regards.
-----------------------------------
Featured on Portal:
http://www.xda-developers.com/android/use-windowmanager-to-create-floating-apps/
Wow, I really like your guides.
Good job. :good:
nikwen said:
Wow, I really like your guides.
Good job. :good:
Click to expand...
Click to collapse
Thanks.
This is real good, Are you planning for futher devlopment?
Verstuurd vanaf mijn GT-I9505 met Tapatalk 4
Can anyone make a poweramp version? For some reason I cannot open poweramp and have to use a widget instead
-
Maybe It'll work
misternox said:
This is real good, Are you planning for futher devlopment?
Verstuurd vanaf mijn GT-I9505 met Tapatalk 4
Click to expand...
Click to collapse
Yes, if there's something else to fix or add, I'll certainly do it.
N_otori0us_ said:
Can anyone make a poweramp version? For some reason I cannot open poweramp and have to use a widget instead
-
Maybe It'll work
Click to expand...
Click to collapse
Poweramp version of what?
Great work.
I had an wish to make an floating apps, using your library this would be surely accomplished.
Sent from my GT-I9300 using XDA Premium 4 mobile app
EatHeat said:
Yes, if there's something else to fix or add, I'll certainly do it.
Poweramp version of what?
Click to expand...
Click to collapse
Basically if I press the circle the poweramp app will open in it. That is what I wish
Sent from my myTouch 4g using xda app-developers app
May be WhatsApp?
Verstuurd vanaf mijn GT-I9505 met Tapatalk 4
Maybe we can expect some multi-window work from you?
That would be awesome... and after I make myself comfortable with android programming, you may count me in, also!
thanks
was looking for this..thanks
N_otori0us_ said:
Basically if I press the circle the poweramp app will open in it. That is what I wish
Sent from my myTouch 4g using xda app-developers app
Click to expand...
Click to collapse
You can try out my Floating Music Widget. It works with PowerAmp.(if not, PM me and I'll make it work).
To the app author - this isn't really a good example. It doesn't explain what does methods of WindowManager do, why we need to call them. It doesn't explain the LayoutParams parameters. For example, you could say that different types of windows allow different visibility - for example, that TYPE_PHONE is OK for most of floating windows, and TYPE_SYSTEM_ERROR can be used for something that has to overlay everything, even status bar and lockscreen.
Your code, however, also has flaws. For example, unused constant. Programming newbie can think that it is necessary to make floating windows. And handling general Exception is a bad practice. Newbie can think that floating window can throw ANY exception. Instead, you should catch IllegalArgumentException and explain the user that it is because sometimes View gets detached from Window BEFORE touch event handling occurs.
Jsut another example for such an app with a floating pPoint.
http://forum.xda-developers.com/showthread.php?t=2368993
Dr.Alexander_Breen said:
You can try out my Floating Music Widget. It works with PowerAmp.(if not, PM me and I'll make it work).
To the app author - this isn't really a good example. It doesn't explain what does methods of WindowManager do, why we need to call them. It doesn't explain the LayoutParams parameters. For example, you could say that different types of windows allow different visibility - for example, that TYPE_PHONE is OK for most of floating windows, and TYPE_SYSTEM_ERROR can be used for something that has to overlay everything, even status bar and lockscreen.
Your code, however, also has flaws. For example, unused constant. Programming newbie can think that it is necessary to make floating windows. And handling general Exception is a bad practice. Newbie can think that floating window can throw ANY exception. Instead, you should catch IllegalArgumentException and explain the user that it is because sometimes View gets detached from Window BEFORE touch event handling occurs.
Click to expand...
Click to collapse
Yes, you are correct about the unused constant. I was going to add a feature of putting it into the status bar by preference to be accessed from there, but in the end decided against it. Hence, the unused constant.
As for the explaining part for newbies, I didn't think it necessary since its not at all hard. Reading the docs would be enough to handle this.
Anyways thanks for pointing this out. :good:

[Q] WhatchON

Hey guys!
I have a qiestion about WhatchON.
I have a VIVAX TV but WO doesn't have that TV.
I was wondering if I can manually insert IR codes.
I saw that feature on HTC One. In their application you can manually insert/scan code using remote.
I hope you understand me.
Here's the app I use, I don't think you can manually program the codes though: https://play.google.com/store/apps/details?id=com.remotefairy
It's easy to set up and customise, and supports a wide range of products. Couldn't reccommend it enough!?????
If the above app doesn't support the device your trying to use, you can try this: https://play.google.com/store/apps/details?id=remote.control.samsung
I think this is more what your looking for, you can customise the IR codes to support your device. But it was a bit too involving for me and I prefer the first app I mentioned.
EDIT: Had a quick check and found this(did you mean Vimax):
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Few more screens, this is a paid app btw- worth every penny:
Sent from my SM-N9005 using Tapatalk
Thank you, but i couldn't find my TV. It is Vivax.
Gruja96 said:
Thank you, but i couldn't find my TV. It is Vivax.
Click to expand...
Click to collapse
No worries mate....
A while back I had a Teac TV and couldn't find the universal remote code for it. I found out it shared the same codes as certain LG models. Anyway I did a quick check for you, and apparently Vivax may share some of the IR codes as the brand Toshiba or Sanyo.
Have a check under Watchon again, and see if the Toshiba or Sanyo codes work for your TV?
Good luck.
Sent from my SM-N9005 using Tapatalk
I checked WatchOn and Smart remote. It have 40 codes for emerson but unfortunately they don't work. Thank you for your help.
Sorry man I edited my post. The emerson codes were for Vimax lol.
Vivax seem like a pretty obscure brand, I've never heard of them in Australia. There a little hard to find info for... I know this doesn't help, but if you've got the time you could try as many remotes(different brands) as you can until one hopefully works. In the mean time submit a support request for your tv on watchon if you haven't already. The first app I mentioned has a great support team and reply to emails in a very timely fashion.
I'm sorry thats all I can think of. Best of luck
Sent from my SM-N9005 using Tapatalk
After submitting a support request, here's the brands that may work for your Vivax:
Akura, Denver, Digitek, Fujicom, Prosonic.
Try them out and tell us if any of them work?
Full credit to Color Tiger, the devs behind the app: Smart IR Remote. If the above info worked, maybe you'd consider supporting them. I'm in no way affiliated with them, just pleased with their apps and support team.
Cheers
Sent from my SM-N9005 using Tapatalk
I have a no name led tv "vortex" and can't find the code for it!
Trimis de pe al meu SM-N9005 folosind Tapatalk
denski101 said:
After submitting a support request, here's the brands that may work for your Vivax:
Akura, Denver, Digitek, Fujicom, Prosonic.
Try them out and tell us if any of them work?
Full credit to Color Tiger, the devs behind the app: Smart IR Remote. If the above info worked, maybe you'd consider supporting them. I'm in no way affiliated with them, just pleased with their apps and support team.
Cheers
Sent from my SM-N9005 using Tapatalk
Click to expand...
Click to collapse
Unfortunately none of the codes worked. I tried with WatchO and Smart IR Remote. Thanks anyway.
Gruja96 said:
Unfortunately none of the codes worked. I tried with WatchO and Smart IR Remote. Thanks anyway.
Click to expand...
Click to collapse
That's unfortunate!
I'm not familiar with HTC's learning function but a IR learning function would be a great addition to the IR blaster, featured on our Samsung devices. Definitely an area that could have a meaningful improvement, especially for other's with obsucure or no name electronics brands.
Oh well, you can't always get what you want?.
Sent from my SM-N9005 using Tapatalk

[PROJECT] htc sense 6 - scene color xposed mod development [LOOKING FOR XPOSED DEVS]

hi
since some days i'm digging into decompiled apk's of sense 6 and found out how "scenes" work.
htc sense 6 introduced "scenes" containing a wallpaper and 4 color tones (actually it's more than 4 i found out).
i'm facing problems with some apk's i need to compile to get it working (got it partially working already).
looking for: a skilled and motivated xposed module developer to make it happen via xposed framework.
goal: have ability to change one scene's color codes on the fly or add a custom theme if possible.
please reply in this thread or send me a pm if you're intrested.
@ moderators: please don't delete this thread since it will be used for the release if it is successful.
feel free to move this thread to "Xposed Framework Modules" forum.
here a little teaser to show progress from my side:
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
Can you be more specific about what you want to achieve and give some more details about this project of yours?
ssrij said:
Can you be more specific about what you want to achieve and give some more details about this project of yours?
Click to expand...
Click to collapse
i can give much more details but only to someone that seriously wants to work on this and has the skills to do so.
don't want someone else to simply take my research and do the same but without me.
It has been done already: http://forum.xda-developers.com/showpost.php?p=51278330&postcount=168
Mr_Bartek said:
It has been done already: http://forum.xda-developers.com/showpost.php?p=51278330&postcount=168
Click to expand...
Click to collapse
I think he wants to change the colour while the device is running. for the advantage of not depending on a flashable zip
I understand, but he can share his research since it's nothing extraordinary.
Sent from my HTC One using Tapatalk
I definitely like the idea. It could also be combined with something similar like the exposed module "tinted status bar" that also colors the status bar on 3rd party apps
Gesendet von meinem HTC One mit Tapatalk
I would love to see this made into a Xposed mod.
Mojodrago said:
I would love to see this made into a Xposed mod.
Click to expand...
Click to collapse
Me too.
@HD2Owner
I'd be interested in this.
I don't have the m7, but I've been programming in java for several years now and have made some xposed modules too. Hit me up via PM.
I hope this is going to happen insert coins way of doing this is good but an xposed module that works with every Rom would be awesome. Do you think it's also possible to change the volume sliders color?
Gesendet von meinem HTC One mit Tapatalk
IE-coRe said:
I hope this is going to happen insert coins way of doing this is good but an xposed module that works with every Rom would be awesome. Do you think it's also possible to change the volume sliders color?
Click to expand...
Click to collapse
alot could be possible and yes it would be rom-independent (if there are no major ui mods cooked in).
it all depends on me finding a great programmer to do the actual work.
sadly, voluntary skilled programmers are a rare breed no matter the operating system or device. :laugh:
HD2Owner said:
...sadly, voluntary skilled programmers are a rare breed no matter the operating system or device. :laugh:
Click to expand...
Click to collapse
Buddy, skilled programmers just don't give a $hit about about colors and other decorations.
But, you know it by yourself
HD2Owner said:
alot could be possible and yes it would be rom-independent (if there are no major ui mods cooked in).
it all depends on me finding a great programmer to do the actual work.
sadly, voluntary skilled programmers are a rare breed no matter the operating system or device. :laugh:
Click to expand...
Click to collapse
Or... you could learn youself? Xposed ain't that hard to use with java, plus its certainly a lot easier than smali
Workflow for this through Xposed would be something like:
-> Hook methods for scenes/colours
-> Create a MainActivity for your app with whatever UI you want behind it (eg, preferences/preferencescreen, listview etc - probably preferences is easier since it allows a hassle free way to interface with SharedPreferences and store the chosen colours so the app remembers the colour chosen)
-> Say the user clicks on changing the colour for blinkfeed, this opens a Dialog Box with a load of RadioButtons for each different colour.
-> User clicks colour, dialog box dissapears and colour is written to sharedPreferences then you also write the colour back into the hooked method
And to finish:
-> User reboots phone & Xposed does its magic
Hey buddy!!
Xposed modding isn't terrible (if you have basic knowledge of Java- I'm a student and caught on pretty quickly to how it works)...
If I were you, I would learn some Java/Xposed modding and create this yourself. That way you could create what YOU have in mind without anything you don't want, yknow?
If you need any help, I'm sure there are resources and people willing to aid you, however not many would make this mod for you solely because you asked.
Sent from my One using XDA Premium 4 mobile app

Categories

Resources