Related
Hey all,
I find it incredibly stupid that car home keeps the standard wallpaper and just dims it. I'm using the album art wallpaper and it makes car home almost unusable.
Would it be possible to force the system to change the wallpaper to a black background when car home is in use and then change it back when you close it?
Thanks!
If your screen is too dark:
Look on bottom right corner, under EXIT CAR MODE. See the little > right arrow?
Hit that and change your screen brightness setting.
Automatic > Night > Day
As for changing the wallpaper. I've never heard about that possibility.
Maybe someone with theming or morphing skillz will come across this thread??!
rickytenzer said:
Hey all,
I find it incredibly stupid that car home keeps the standard wallpaper and just dims it. I'm using the album art wallpaper and it makes car home almost unusable.
Would it be possible to force the system to change the wallpaper to a black background when car home is in use and then change it back when you close it?
Thanks!
Click to expand...
Click to collapse
That should be possible with Tasker.
Unfortunately I use settings profiles and would hate to pay for a software to handle this one thing. I wish CM could incorporate this change into the nightlies!
Would be easy to do with Tasker which is a great app anyway. I recommend getting it and I'm sure you'll find some other useful things you can do with it too (it should easily replace settings profile for you too)
This should be a simple change, but apktool is acting up and won't recompile the apk. Hopefully I will have one available soon.
Cool thanks! You rock.
This is turning out to be significantly harder than it should be. aapt seems to be ignoring the entire res/values folder, so even an empty decompile/recompile fails (but works fine for every other apk I throw at it), and MetaMorph is just flat out having no effect. I will keep working on it, but for now it seems hopeless by divine force.
RoboPhred said:
This is turning out to be significantly harder than it should be. aapt seems to be ignoring the entire res/values folder, so even an empty decompile/recompile fails (but works fine for every other apk I throw at it), and MetaMorph is just flat out having no effect. I will keep working on it, but for now it seems hopeless by divine force.
Click to expand...
Click to collapse
Even if you can't get it, I appreciate the effort!
So you couldn't get it going?
I really haven't looked into it but isn't it possible to theme the app to use a black interface instead of the transparent one it uses now? I mean replace the transparent .png's with black ones.
The background does not use images, it specifies a theme resourse and adds a transparent black color. I have been trying to change that resourse, without apktool playing nice there is no real way to do this. I tried changing the theme by editing the smali code, but that is overridden by the view's style attribute, and the theme can't be set after the view is inflated.
From what I have found, the only two options with out the ability to compile resource files is either to implement the original idea of blacking the wallpaper on run, or editing the compiled binary xml blob manually.
I could always make a simple service app to change the wallpaper on car mode toggle, that would be easiest at this point.
Update: Did some research, its impossible to set a live wallpaper through code using the public API due to security concerns, so that removes all non-resource ideas. This has to be done through the style resources of CarHome itself.
I have a very nice icon overlay I would like to use over all of the icons placed on home screens or in the app tray by Rosie.
I am assuming if I find the spot in Rosie where it places those icons after getting them from the apps, I could add this in.
I can add the overlay to each APK by hand, but this will only work for APKs included in the ROM, whereas putting it into Rosie would put it on all of them, even user installed ones.
Thoughts? Anybody done or seen anything like this?
D
.
dsb9938 said:
I have a very nice icon overlay I would like to use over all of the icons placed on home screens or in the app tray by Rosie.
I am assuming if I find the spot in Rosie where it places those icons after getting them from the apps, I could add this in.
I can add the overlay to each APK by hand, but this will only work for APKs included in the ROM, whereas putting it into Rosie would put it on all of them, even user installed ones.
Thoughts? Anybody done or seen anything like this?
D
.
Click to expand...
Click to collapse
That would need to be coded and supported into the launcher application. Stock aosp, and rosie I don't think support that, there are other launchers that do support it though with a theme apk. Like Go Launcher or ADW.
Unless you are asking something else?
lithid-cm said:
That would need to be coded and supported into the launcher application. Stock aosp, and rosie I don't think support that, there are other launchers that do support it though with a theme apk. Like Go Launcher or ADW.
Unless you are asking something else?
Click to expand...
Click to collapse
No, I was totally talking about hacking it into Rosie.
I know there are overlays used for other things, so I was just considering the idea of adding one for this.
Not as a user option, as something automatically done to all icons.
D
.
dsb9938 said:
No, I was totally talking about hacking it into Rosie.
I know there are overlays used for other things, so I was just considering the idea of adding one for this.
Not as a user option, as something automatically done to all icons.
D
.
Click to expand...
Click to collapse
I have no smali experience, and don't really have an interest. Hopefully someone else can help then.
lithid-cm said:
I have no smali experience, and don't really have an interest. Hopefully someone else can help then.
Click to expand...
Click to collapse
LOL, that's fine. I'm sure it's XML, not smali, but thanks for looking anyway.
D
.
dsb9938 said:
LOL, that's fine. I'm sure it's XML, not smali, but thanks for looking anyway.
D
.
Click to expand...
Click to collapse
Its most definitely not just xml edits. You will need to write code into the launcher to accept different icons based on package name. Currently the launcher uses a default api to retrieve the icon attached to the launcher intent. Be my guest to get it working with only xml edits though.
lithid-cm said:
Its most definitely not just xml edits. You will need to write code into the launcher to accept different icons based on package name. Currently the launcher uses a default api to retrieve the icon attached to the launcher intent. Be my guest to get it working with only xml edits though.
Click to expand...
Click to collapse
I don't want to change it pulling the icon from the app.
After it does that, when it renders it, I want to add the overlay on top. Which I am hoping I can do in the layout XML files.
Of course, I could be completely wrong, which is why I posted this.
D
.
dsb9938 said:
I don't want to change it pulling the icon from the app.
After it does that, when it renders it, I want to add the overlay on top. Which I am hoping I can do in the layout XML files.
Of course, I could be completely wrong, which is why I posted this.
D
.
Click to expand...
Click to collapse
Right, you need to code in the overlay. Overlay via xml that you are thinking of only works when building from source. An example is the amount of code needed to theme a rom like cm7, cm9, cm10. These all have that ability to theme the icons based on activity name in the framework, if that activity path and image exists, it displays a different image. This is done in code, not xml.
lithid-cm said:
Right, you need to code in the overlay. Overlay via xml that you are thinking of only works when building from source. An example is the amount of code needed to theme a rom like cm7, cm9, cm10. These all have that ability to theme the icons based on activity name in the framework, if that activity path and image exists, it displays a different image. This is done in code, not xml.
Click to expand...
Click to collapse
Guess it's a good thing I asked before diving in then.
Thanks for the info.
Being an HTC guy who only messes around with Sense, I have some smali under my belt, but I am by no means good at it. So I guess I will seek help from somebody who is.
Thanks a bunch!
D
.
Here is some code from ADW that enables the icons to be themed.
Part1
https://github.com/CyanogenMod/andr...mmit/84457c8837dfd62f11f616de50289860b8542887
Part2
https://github.com/CyanogenMod/andr...mmit/6c6ae4a8d5dc538b337e4d0206ac75358b31044c
This toggles on/off the icon themes:
https://github.com/CyanogenMod/andr...mmit/8236848db5c80e5cb8f2e1cbba74e7fa194dfb1f
In order for you to enable "icon" overlay support, you will need to add code in to support it. I am sorry.
lithid-cm said:
Here is some code from ADW that enables the icons to be themed.
Part1
https://github.com/CyanogenMod/andr...mmit/84457c8837dfd62f11f616de50289860b8542887
Part2
https://github.com/CyanogenMod/andr...mmit/6c6ae4a8d5dc538b337e4d0206ac75358b31044c
This toggles on/off the icon themes:
https://github.com/CyanogenMod/andr...mmit/8236848db5c80e5cb8f2e1cbba74e7fa194dfb1f
In order for you to enable "icon" overlay support, you will need to add code in to support it. I am sorry.
Click to expand...
Click to collapse
No worries, it's good to have input from people who know more than I do.
I was hoping it would be easier, just adding my overlay in the layout XML files over top of the app icons, but life is never easy.
D
.
I'm a complete novice when it comes to programming for this kind of thing. Actually, novice doesn't begin to describe So I have a request, but I'm not sure how possible it is, or if it's done and I just haven't figured it out. I *love* Themer, and I like have the freedom to change things up without all the extra crap that other launchers have. My issue is that I tend to change themes every week or so, but then I have to turn around and modify each one to get it just right. Is there a way to transfer mods from theme to theme?
biblioholicbeth said:
I'm a complete novice when it comes to programming for this kind of thing. Actually, novice doesn't begin to describe So I have a request, but I'm not sure how possible it is, or if it's done and I just haven't figured it out. I *love* Themer, and I like have the freedom to change things up without all the extra crap that other launchers have. My issue is that I tend to change themes every week or so, but then I have to turn around and modify each one to get it just right. Is there a way to transfer mods from theme to theme?
Click to expand...
Click to collapse
What sort of mods you talking. As depending on what you want add.
You could use themer zooper as that will save a template to your sd card that you can add to as many themes as you like
All the best
Moley
Sent from my RAZR I screen to your screen using a strange thing known as the world wide web
biblioholicbeth said:
I'm a complete novice when it comes to programming for this kind of thing. Actually, novice doesn't begin to describe So I have a request, but I'm not sure how possible it is, or if it's done and I just haven't figured it out. I *love* Themer, and I like have the freedom to change things up without all the extra crap that other launchers have. My issue is that I tend to change themes every week or so, but then I have to turn around and modify each one to get it just right. Is there a way to transfer mods from theme to theme?
Click to expand...
Click to collapse
You can't save Everything Widgets from theme to theme, but as Moley said you can save the Zooper Widget configurations.
If you hold down on the homescreen - Advanced - Unlock Widgets, then hold down on the widget - Configure.
If it's a Zooper Widget, you can do as many customization tweaks as you want, and once you're happy (via Layout) - select the save icon at the top.
Now when you want to add this saved template, add a Zooper Widget - Resize it - tap to open it's options - SD Card - your saved template
where can I download it from their is no link?
aluts123 said:
where can I download it from their is no link?
Click to expand...
Click to collapse
What are you trying to download? You can download Themer here: bit.ly/ThemerPlayStore
How does a person create a theme and then use it? I'd like to have very specific things on my theme but other than adding to an existing theme, i can't seem to take away from an existing theme, how do I create a new one from scratch?
I know they say watch the vid but if you are like me you need to see it in writing,it makes more sense to me that way.Anyway the easiest way is to grab a theme and change it around/edit,get a feel for the program then create your own by changing wallpapers,icons,weather etc.A lot of themes now won't let you edit them I have found,however download any of mine and edit away they are all editable,as are a few more posted here but names don't spring to mind,none in my opinion are any better or worse than each other they just have their own little attributes that makes them unique in their own way.So go on and play around m8,it will be fun.
alldroid said:
I know they say watch the vid but if you are like me you need to see it in writing,it makes more sense to me that way.Anyway the easiest way is to grab a theme and change it around/edit,get a feel for the program then create your own by changing wallpapers,icons,weather etc.A lot of themes now won't let you edit them I have found,however download any of mine and edit away they are all editable,as are a few more posted here but names don't spring to mind,none in my opinion are any better or worse than each other they just have their own little attributes that makes them unique in their own way.So go on and play around m8,it will be fun.
Click to expand...
Click to collapse
Thanks, I cannot stand those youtube videos that "show" you how to do things. I find them tedious and unusable. I'd rather just get some instructions, an application and let me do it. Yet, so many seem to post "youtube instructions" i write this stuff for a living and have never found a video more useful than written instructions. However, that's my bias.
I'll go check out some of yours.
I agree with your assessment that NONE of the themes I've downloaded have been editable. I don't want to ADD more widgets and icons to a theme. I just want to start with a blank canvas and let me do it.
Yet, if all these themes exist, HOW were they created? I'm really not going to watch a youtube video. There has to be a building application somewhere. Not re-engineer something already there.
One question, when you say "download mine" where do I find yours. None of the ones I've seen through the application say who created them.
mine and others are in the screenshots and themes forum beneath the general discussion.I agree fully with the video and much prefer to read it as I find it more followable,but again I suppose that is my bias too.You can start almost fresh,grab a theme as posted earlier,then delete everything,if the theme uses everything widget this is simple to do,just press screen and choose remove,then change the wallpaper by selecting your own then simply add you own widgets etc via the inbuilt everything widget (although this isn't as stable as it could be) or download widgets from playstore etc then add them,hope this helps apologies if I seem to waffle on.
alldroid said:
mine and others are in the screenshots and themes forum beneath the general discussion.I agree fully with the video and much prefer to read it as I find it more followable,but again I suppose that is my bias too.You can start almost fresh,grab a theme as posted earlier,then delete everything,if the theme uses everything widget this is simple to do,just press screen and choose remove,then change the wallpaper by selecting your own then simply add you own widgets etc via the inbuilt everything widget (although this isn't as stable as it could be) or download widgets from playstore etc then add them,hope this helps apologies if I seem to waffle on.
Click to expand...
Click to collapse
Got it, will go over there and check them out.
sanjsrik said:
Got it, will go over there and check them out.
Click to expand...
Click to collapse
Hi sanjsrik,
I'm the one who made the YouTube tutorial videos, so I apologize if they weren't that informative. Those were created in the beginning just to give people a basic understanding of what Themer was about.
Alldroid is correct in saying that starting with a fresh blank theme is the best, then just seeing what works and what doesn't. My advice would be learn more about Zooper Widget, as a lot of the newer themes use it, and it's brilliant. That's all Themer is essentially, a wallpaper, some widgets, and maybe some icons if you're feeling brave. We do recommend making the grid size quite large, in order to make the widget resizing easier. you might also notice that the new themes include incredibly detailed icons, these are in fact Zooper fonts, so as mentioned play around with the Zooper widgets found in the new themes.
If you need help/ideas feel free to ask, I'm always here to help!
- Marco
It isn't that the video isn't informative,it probably is but some people including myself prefer to read it via a text file or maybe a pdf file
alldroid said:
It isn't that the video isn't informative,it probably is but some people including myself prefer to read it via a text file or maybe a pdf file
Click to expand...
Click to collapse
Would you like us to create in-depth text tutorials on our site?
ThemerSupport said:
Would you like us to create in-depth text tutorials on our site?
Click to expand...
Click to collapse
Marco,
I would definitely go for it... though I am more of a "hands on" student and for learning I need to hear the stuff (that's how I learned all the stuff during college - my wife reading the material and me laying down and just listening - damn, she was so furious when I got the same grades as she did... ;o]]]), the text might help you gain more audience among those "give-me-a-manual-and-shut-up" types.
You have created a superb product for the tinkerers so a step further in the direction of a superb customer/user support would be a definitive nod in the right direction.
I personally would like more short video tutorials on specific features, how they work, what is their purpose and the mechanics (Yeah, you guessed it, I am not that familiar with design and graphics;o]) and maybe a tut on the 'codes' for custom formats of zooper widget.
well and maybe few more videos with theme designers like the one you guys did with GeriArts would also be inspiring... ;o]]]
another definate yes here too thanks,would make it a more better product in my opinion.
ThemerSupport said:
Hi sanjsrik,
I'm the one who made the YouTube tutorial videos, so I apologize if they weren't that informative. Those were created in the beginning just to give people a basic understanding of what Themer was about.
Alldroid is correct in saying that starting with a fresh blank theme is the best, then just seeing what works and what doesn't. My advice would be learn more about Zooper Widget, as a lot of the newer themes use it, and it's brilliant. That's all Themer is essentially, a wallpaper, some widgets, and maybe some icons if you're feeling brave. We do recommend making the grid size quite large, in order to make the widget resizing easier. you might also notice that the new themes include incredibly detailed icons, these are in fact Zooper fonts, so as mentioned play around with the Zooper widgets found in the new themes.
If you need help/ideas feel free to ask, I'm always here to help!
- Marco
Click to expand...
Click to collapse
I promise I am NOT complaining. I promise I am NOT criticizing. I am just asking the question, WHAT is Themer?
from everything I understand, it's not a true "application", it's a wallpaper that then people can add widgets that "do" things.
if this is the case, HOW are these widgets "locked" where they can't be changed in a lot of the wallpapers I've downloaded.
THAT is my only question.
Oh, and how come there's not a "builder" application for Themer?
sanjsrik said:
I promise I am NOT complaining. I promise I am NOT criticizing. I am just asking the question, WHAT is Themer?
from everything I understand, it's not a true "application", it's a wallpaper that then people can add widgets that "do" things.
if this is the case, HOW are these widgets "locked" where they can't be changed in a lot of the wallpapers I've downloaded.
THAT is my only question.
Oh, and how come there's not a "builder" application for Themer?
Click to expand...
Click to collapse
No worries we weren't offended by your comments, we're just trying to make everyone's theming experience as easy possible.
Themer is a launcher. Just like TouchWiz, Nova, Apex, ssLauncher, etc. It's a link between the hardware and software, you could think of it as the body/shell of a car. The car can have a different shell, and with Themer, it's shell can be customized in seconds.
Calling it a wallpaper with widgets doesn't really do it justice, as a launcher incorporates your app drawer as well, and maybe some more features arriving soon.
One thing to remember is that Themer, once stripped to its core, it a launcher, just like the rest. By that we mean you're able to edit/add/remove widgets, change wallpapers, change the icons (icon pack support arriving soon), etc. To unlock widgets, hold down on the homescreen - Advanced - Unlock Widgets. Repeat the process to lock them, or alternatively you can go into the main Themer settings - Advanced - Desktop - enable Lock Desktop Widgets.
Whenever the widgets/icons are unlocked, this can be called the "builder" mode, as you can add/remove/edit widgets and icons.
Hope this helps!
sanjsrik said:
I promise I am NOT complaining. I promise I am NOT criticizing. I am just asking the question, WHAT is Themer?
from everything I understand, it's not a true "application", it's a wallpaper that then people can add widgets that "do" things.
if this is the case, HOW are these widgets "locked" where they can't be changed in a lot of the wallpapers I've downloaded.
THAT is my only question.
Oh, and how come there's not a "builder" application for Themer?
Click to expand...
Click to collapse
I am always critizising m8 it's what makes it a better program,constructive critisizm always helps,your post didn't seem offensive to me m8
ThemerSupport said:
No worries we weren't offended by your comments, we're just trying to make everyone's theming experience as easy possible.
Themer is a launcher. Just like TouchWiz, Nova, Apex, ssLauncher, etc. It's a link between the hardware and software, you could think of it as the body/shell of a car. The car can have a different shell, and with Themer, it's shell can be customized in seconds.
Calling it a wallpaper with widgets doesn't really do it justice, as a launcher incorporates your app drawer as well, and maybe some more features arriving soon.
One thing to remember is that Themer, once stripped to its core, it a launcher, just like the rest. By that we mean you're able to edit/add/remove widgets, change wallpapers, change the icons (icon pack support arriving soon), etc. To unlock widgets, hold down on the homescreen - Advanced - Unlock Widgets. Repeat the process to lock them, or alternatively you can go into the main Themer settings - Advanced - Desktop - enable Lock Desktop Widgets.
Whenever the widgets/icons are unlocked, this can be called the "builder" mode, as you can add/remove/edit widgets and icons.
Hope this helps!
Click to expand...
Click to collapse
Thank you for the constructive email.
I think the biggest confusion anyone has with your "application" is that it doesn't seem like an application. It really does sound like a wallpaper with widgets. For example:
* Is there the ability to add groups for grouping together like kinds of applications?
* Can I add my own icons for applications?
Think GoLauncher or some other such "launcher" application that exists.
sanjsrik said:
Thank you for the constructive email.
I think the biggest confusion anyone has with your "application" is that it doesn't seem like an application. It really does sound like a wallpaper with widgets. For example:
* Is there the ability to add groups for grouping together like kinds of applications?
* Can I add my own icons for applications?
Think GoLauncher or some other such "launcher" application that exists.
Click to expand...
Click to collapse
1. With Themer, you can add in Smart Category folders. For example the Games Category, when you install a new game, it will show up in this category and then whichever theme has a games folder, this new game will automatically appear. This saves a lot of time, but you can also manually add in your own categories or manually add in your own apps to a category.
2. Icon pack support is still limited. If you have icons on the homescreen, these can be edited manually. Some icon packs are supported, but you can also set them to other images in your gallery.
ThemerSupport said:
Would you like us to create in-depth text tutorials on our site?
Click to expand...
Click to collapse
YES! I watched many of the videos and I'm still very much confused. I have specific ideas for what I want, and although I can figure some things out on my own by trial and error, reinventing the wheel is both time-intensive and tiresome.
Also, I am glad to hear that icon pack support is on the list. Although my plans include heavy use off the app drawer, I'd like to have the icons in there be pleasing to my eye as well as the ones on my home screen.
It's a great product, one that I've already suggested to several friends. I just am more demanding than the "average bear".
Sent from my HTC One using xda app-developers app
j3nn said:
YES! I watched many of the videos and I'm still very much confused. I have specific ideas for what I want, and although I can figure some things out on my own by trial and error, reinventing the wheel is both time-intensive and tiresome.
Also, I am glad to hear that icon pack support is on the list. Although my plans include heavy use off the app drawer, I'd like to have the icons in there be pleasing to my eye as well as the ones on my home screen.
It's a great product, one that I've already suggested to several friends. I just am more demanding than the "average bear".
Sent from my HTC One using xda app-developers app
Click to expand...
Click to collapse
Great to hear! Stay tuned for text-tutorials!
Hi.
I would like to have as well an written tutorial. Seems very interesting. I start now to play around with the themer myself from downloading a theme then deleting all a add my stuff.
Can i use all icon packs ? what format they have to be ?
störte said:
Hi.
I would like to have as well an written tutorial. Seems very interesting. I start now to play around with the themer myself from downloading a theme then deleting all a add my stuff.
Can i use all icon packs ? what format they have to be ?
Click to expand...
Click to collapse
most icon packs by default don't work with themer,but there is a way round this although you will need to manually change the icons you want to use.
Download apk extractor from Playstore
download the icon packs you want to your device
using apk extractor extract the apk of the icon pack you downloaded,this file will be stored on your device main storage in the apk extrat folder.
Attach your device to your laptop etc,then drag the extracted apk icon pack to it
rename the icon.apk and change the apk extension to zip
open with your favourite zip program
then simply extract the icon file images
this thread helped a lot
Hi,
There are some themes I love and I would like to use, but some details doesn't seem good to me, such as shortcuts. Is there any way to modify those shortcuts in order to make mine, but keep using the particular theme ? I didn't find anything about this...
Thanks for your help
AutruiP said:
Hi,
There are some themes I love and I would like to use, but some details doesn't seem good to me, such as shortcuts. Is there any way to modify those shortcuts in order to make mine, but keep using the particular theme ? I didn't find anything about this...
Thanks for your help
Click to expand...
Click to collapse
Hi,
Editing a theme is easy - simply long press on the homescreen - select Advanced - Unlock Widgets. Now you can add/remove widgets and shortcuts till your hearts content. Then when you are satisfied with your theme repeat the process to lock the items into place
ThemerSupport said:
Hi,
Editing a theme is easy - simply long press on the homescreen - select Advanced - Unlock Widgets. Now you can add/remove widgets and shortcuts till your hearts content. Then when you are satisfied with your theme repeat the process to lock the items into place
Click to expand...
Click to collapse
Awesome, thanks ! I was looking for this during hours... Didn't find anything on the Themer website :/
Another question, I have sometimes a pop-up with "crash data failed to send, retry later", but I can't find where to send it, and the pop-up doesn't disappear... I have to uninstall-reinstall the app in order to fix that... I have a One Plus One on CyanogenMod 11 38R
Semi related question, is there anywhere I can download images of the standard icons you use for smart categories? I like a lot of themes but would like to change the categories on them and to do that need the images to match the theme.
Thanks
chickengrease said:
Semi related question, is there anywhere I can download images of the standard icons you use for smart categories? I like a lot of themes but would like to change the categories on them and to do that need the images to match the theme.
Thanks
Click to expand...
Click to collapse
Hi,
We're still working on this feature, hopefully it will be added soon!
Thanks for the info