[Q] Android porting, widgets are all black. - Android Software/Hacking General [Developers Only]

My situation the same as that another man in the following post has.
(I am new and unable to embed outside URL's in my post. Please search Google for 'when switch to 32 bit graphics icons go black'.)
I am porting Android to a MIPS-based device. After modifying the frame buffer and gralloc, the wallpaper is displayed in the correct colours. But all widgets are black.
Since the frame buffer's post() function just received composed data, and the wallpaper's colour is correct, I guess the code that draws widgets has some problems. This may be the display data I set is different (or wrong) from what the code expects.
If it is not too much trouble, could you give me any hint about the files I should check? Or which files are related to drawing widgets?
I have spent a few days debugging this but there was no progress.

Related

App modification request

I'm not sure if this will work or how this works but I'm wondering if there are any avenues to request a feature or modification to an app when the original developer is unresponsive to requests? Obviously this would only be for personal use and not for redistribution of the app.
App: BattStatt
Mod: I love the look and simplistic nature of this widget. My only grip is that I'm running it on an Evo 4g with a large 800x480 display and when I use the widget in a 4x1 configuration the text only takes up a small portion of this defined area. I want the text to scale up to where it fills the 4x1 space as much as possible so space isn't wasted. Can this modification be done easily by any of the developers around here? I'm not sure how this works so don't flame me lol.
Typically, the source code needs to be available to modify how it works. Is it?
All I have is the app itself as downloaded through the market. I'm not sure how to go about getting the source code.
Hmm.. this app uses "sp" units to set font size, so text should automatically scale to constant physical size.
I won't modify it for you, because I would have to create 5 different sizes, so you would choose the best for you. But you could quite easily do it by yourself using apktool. Link is in my signature.
EDIT:
Or just tell me, how much bigger you want this text.

Timescape themes (Update for 2.1)

For 2.1 themes see post #17 on page 2: http://forum.xda-developers.com/showpost.php?p=9049613&postcount=17
I decided to open a thread to share the knowledge I have collected on timescape themes. This also partially applies to mediascape and up until now has been split between these two threads:
http://forum.xda-developers.com/showthread.php?t=737778&page=46
http://forum.xda-developers.com/showthread.php?t=765686 Please read this!
I thought it would be better to combine this into one thread that will be easier to find. If anyone disagrees then please post with reasons and alternatives. I will update this first post as we figure out more tweeks etc. (hopefully it will need a big rework soon because SE finally gets us 2.1 )
Before I start, thanks to Chewitt for finding the acet files, and for inspiring me to start messing with the look of my x10 with his Dark10 themes.
Timescape (and mediascape) do not store all of their images in the .apk resources. Oh no, that would just be too logical, and we are talking about Sony Ericsson here
The timescape theme .apk resources do contain some of the images used (e.g. the trash can and app drawer handles), and the actual Timescape .apk has the resources for the tile images etc. I'm not going to go into this as there is enough content about modifying these sorts of resources here. What I will go into is where the timescape background, wave animation, pagination slider colours and the tile alpha blending and default colours.
1. The background: This is stored in an .acet file (see the first of the above posts). This is an file that basically just contains a samll header and then rgb information (or sometimes argb, this is specified in the header which I haven't got 100% sussed yet). The background images are in the assets/ts folder in the theme .apk and are called ts_bg_app.acet and ts_bg_home.acet for the application and timescape home respectively. These can be modified with acetConverter.exe. You can load an image and export an acet file or you can go the other way. TS uses acet backgrounds without an alpha channel so leave the alpha checkbox unticked when creating them (it might work with alpha... never tried...).
2. The Tiles: I'm pretty sure the alpha blend images for the tiles are found in the system/usr/semc/seee/files folder (alpha_tile.acet and alpha_tile_fade*.acet) but I haven't modified these yet. As an aside the background for the first page of mediascape is here too. More important is the default background for a tile. This file, ts_tile_empty.acet, is a single pixel file found in the assets/ts folder for each theme. This specifies the solid colour to be used as a background for the alpha overlay on empty tiles.
3. Animation files: Wave and Pagination. This is all stored in three .afx java animation files in the themes assets/ts folder (ts_bg_wave.afx, pagination_glow.afx and pagination_area.afx). pagination_area is the square around the selected item in the scroll menu at the bottom (or the top if TS is the home page) and pagination_glow defines the lines at the top and bottom of this area. I haven't got these files fully sussed either, at the moment I'm restricted to doing some awful byte replacement to change the color (I can also change the wave pitch, but it doesn't look any good). I have attached an exe to generate these files (SetTimescapeAnimationColor.exe). Click on the white square to choose a base color and use the buttons to generate whichever of the files you want. If anyone knows how to edit these files properly please let me know, I come from a c# and c++ background and don't really know what I'm doing with java...
Thats pretty much it. Just sort out 6 files, update the png resources (the thumbnails for the theme selection are in the Timescape.apk resources folder) and you're done.
Note: I have had problems when I modified the wrong bytes in the afx files. Basically, after selecting the theme timescape just crashed. If you replace the theme file it still won't start, you need to clear the application data to get it running again. Along the same lines, after modifying a theme you need to reselect it from the themes menu as the files are cached.
Please let me know if I missed anything.
Update: I have attached the source code for the animation color tool. Please keep in mind that this was just a bit of code quickly thrown together so we can modify the animation color, I don't usually write code that looks like that
The project is a C# project from visual studio 2010 but the meat of it is in MainForm.cs so just open that if you use a different language/dev environment.
Here is the code from one of the buttons. Resources.pagination_glow is a byte array from an embedded resource (pagination_glow.afx).
Code:
string r = string.Format("{0:000}", (int)(((double)colorPanel.BackColor.R / 255.0) * 100));
string g = string.Format("{0:000}", (int)(((double)colorPanel.BackColor.G / 255.0) * 100));
string b = string.Format("{0:000}", (int)(((double)colorPanel.BackColor.B / 255.0) * 100));
byte[] bytes = new byte[Resources.pagination_glow.Length];
Array.Copy(Resources.pagination_glow, bytes, Resources.pagination_glow.Length);
bytes[949] = (byte)r[0];
bytes[950] = (byte)'.';
bytes[951] = (byte)r[1];
bytes[952] = (byte)r[2];
bytes[953] = (byte)',';
bytes[954] = (byte)g[0];
bytes[955] = (byte)'.';
bytes[956] = (byte)g[1];
bytes[957] = (byte)g[2];
bytes[958] = (byte)',';
bytes[959] = (byte)b[0];
bytes[960] = (byte)'.';
bytes[961] = (byte)b[1];
bytes[962] = (byte)b[2];
bytes[963] = (byte)',';
using (FileStream stream = new FileStream(saveDialog.FileName, FileMode.Create))
{
stream.Write(bytes, 0, bytes.Length);
}
What is important to note is that the embedded afx resources came from the orange theme, the other themes will require different offsets for the byte modification. I'm not sure why the different themes have different code here, I haven't looked closely at the wave animation code for each theme so there may only be a difference there, or there could just be one more space here and there in the preceeding lines or four spaces instead of a single byte tab ('\t')...
Anyway, the next step is to try and modify the number of bytes in the code and see if it still works, on my first few tests timescape just crashed so I thought that the number of bytes of clear-text code may be stored in the header. I'm not so sure now as I think I may have just been having problems while mixing the use of the .Net stream classes for reading an writing. I'll check this out though.
If we can modify the code however we want then I just need to learn a bit more java
The code for the wave animation is in the comments at the bottom of MainForm.cs. Here is the line with the characters being modified in bold:
fcolor.rgb = vec3(1.0, 0.91, 0.72) * ambientRatio + vec3(1.0, 0.516, 0.0) * specularRatio;
LOL this is just lazy lol, Thanks for the guide i will get the other 3 i need for Dark10 sorted on sunday.
this all sounds awesome =)
May I suggest posting the source code to your .exe files? that way others can pitch in and help improve the tools, too. slap on the GPL for a decent licence and it should be no problem
ttxdragon said:
this all sounds awesome =)
May I suggest posting the source code to your .exe files? that way others can pitch in and help improve the tools, too. slap on the GPL for a decent licence and it should be no problem
Click to expand...
Click to collapse
Good idea I have just updated the first post. I have only added the animation tool source as the .acet converter is just a direct color translation except for the header which is post in the acet thread linked in the first post.
I can post this code as well if anyone is really interested, but it will have to wait until I am back at work on the 14th, or until the VPN starts working again
VPN's up - posted the rest of the source.
calum.. just got a new charger today lol so back on track.. although some reason i cant seem to get my colour to change at al? ive rebooted, tried task managers n al but no luck..
Edit: ignore that.. managed to get it working! like an idiot i forgot to add the code at the top for mount/remount lol.. feel like a blonde
Has anyone got an original version of ms_bg_background_home_icn.acet?
Being the genius that I am, I tried to edit it without backing it up first.
I tried to convert a png image to an acet file using that acet converter but ended up with a background with a similar issue to what's in this post. Will read through all the posts tomorrow and try again.
Hey buddy any more progress with this project?
Sorry, on the road at the moment. I'll be back onto this next week.
@Mobzter: glad you got it sorted.
@Sixpence: you may have exported the image with the alpha channel. Make sure the alpha option is off for the timescape and mediascape backgrounds. I'll add complete backups to the first post next week
heres a backup of that file
_calum_ said:
@Sixpence: you may have exported the image with the alpha channel. Make sure the alpha option is off for the timescape and mediascape backgrounds. I'll add complete backups to the first post next week
Click to expand...
Click to collapse
Ah, yeh, I think that's what I did. I'll try again and see how I go. Cheers!
Thanks for backup Mobz!
EDIT: Sweet, that worked!
I just thought I'd post a link to my dark Timescape theme here.
Timescape (Dark)
If anyone else has got any modified timescape themes please post them (including the modified framework and thumbnail images). It would be nice if we didn't just all modify the Indigo them (as I did above) as if we use neutral images for the default contacts etc. then we can easily change between the different themes.
Any interest
Just a bump to see if anyone is interested in doing anything with the Timescape animation except changing the color.
If they are then I might get back into modifying the .afx files, otherwise I'll probably just move on....
I don't actually use it that much and now I've got rid of the blue I'm sorta happy, but it might be kinda cool if we can add our own animations to replace the wave...
How about the mediascape animation? I wanna make it melt into the next screen. Do u think that's doable?
How can i chnge theme for x10i
Sent from my X10i using XDA App
gavriel18 said:
How about the mediascape animation? I wanna make it melt into the next screen. Do u think that's doable?
Click to expand...
Click to collapse
Do you mean instead of the spline/fade animation when you hit the 'more' button? I think a melting animation would be pretty ambitious and probably only doable if the fade is actually part of the animation. I'll see if I can get an editor slapped together so we can just modify the afx code directly. I'll have a look at the mediascape animation files once I've got that done...
xian08 said:
How can i chnge theme for x10i
Click to expand...
Click to collapse
Sorry, I need a bit more information here. Where exactly are you stuck? Do you just want to install a different theme that you have from one of the x10 themes in another forum, or do you want to create you own?
That's exactly what I was thinking, a melt to a fade into the next screen.
I'm trying to understand how it works but i don't have enough spare time right now.
OK, 2.1 is here and the file formats for timescape themes have changed...
First off, the apk names have changed. They are now named like this:
TimescapeLargeUITheme[ThemeName].apk (e.g. TimescapeLargeUIThemeSakura)
The .acet files are now .uxraw files. The file header and content has also changed: the header is now 8 bytes, that can be split into 4 16bit integers. The first two I'm not sure about, (second one always seems to be 8...) but the 3rd and 4th are width and height respectively. After the header we still have the color info, but it seems that alpha is always included. The bytes are in the order R G B A (the alpha is now the 4th byte instead of the first).
I have attached the new converter and source.
Edit: I originally wrote an incorrect value for the first byte in the header (20 instead of 0x20... oops ) this resulted in a black background...
The afx files have also changed to uxsh. There seems to be a bit more in these files but the animation code is still in plain text. I'm working on an editor, and will update this post when it's done.
2.1 or 1.6 ?
Is this for 2.1 or 1.6 ?
Looks a silly question... But, am little cautious and more excited to see this on my 2.1update1.
Thx for such a great work.
_calum_ said:
OK, 2.1 is here and the file formats for timescape themes have changed...
Click to expand...
Click to collapse
mitalbr said:
Is this for 2.1 or 1.6 ?
Click to expand...
Click to collapse
2.1 (I had also changed the thread title to make this clearer )
_calum_ said:
2.1 (I had also changed the thread title to make this clearer )
Click to expand...
Click to collapse
I was just adb'ed the file system and I found I have following files...
TimescapeLargeUI.apk
TimescapeLargeUIThemeBlue.apk
TimescapeLargeUIThemeGreen.apk
TimescapeLargeUIThemeIndigo.apk
TimescapeLargeUIThemeOrange.apk
TimescapeLargeUIThemeSakura.apk
TimescapePluginManager.apk
I couldn't locate...
Timescape.apk
TimescapeThemeIndigo.apk

[APP][1.5+] WebLiveWallpaper: set whatever you want as wallpaper or widget! (v0.98.4)

WebLiveWallpaper: Set content (galleries/animations/sites/cams from the web or local files/folders) as Live Wallpaper, live widget or as picture frame.
Create your personal show, create your own (animated) wallpaper with JavaScript!
Original first post:
I wrote my first live wallpaper today because I did not find something like it and thought it should not be too difficult to do. So here it is. I always wanted a real live wallpaper displaying something from the web instead of just a picture or offline animation. For me it is really useful because I can keep an eye on my favourite webcam over the day and decide to go there if the conditions stay or improve. A lot of other use cases should be possible ...
There is now also a picture frame app and a live widget included (also running on devices without live wallpaper support).
WebLiveWallpaper BETA
market://details?id=com.dngames.websitelivewallpaper
http://market.android.com/details?id=com.dngames.websitelivewallpaper
http://www.youtube.com/watch?v=G3VM8L-rnzQ
Some instructions are included in the app description!
User Rangelus wrote a FAQ for me!
Happy to get some feedback,
Michael
Edit: updated apk to v0.98.4: large widgets and some smaller errors repaired
Edit: updated apk to v0.97.8: made local folders directly working as source
Edit: updated apk to v0.97.7.5: hopefully made it working on Android 1.5 devices and fixed Live Wallpaper Settings fc
Edit: updated apk to v0.97.7.1: rewrite of some stuff to fight memory and speed issues + app and widgets repaired again for Android versions without live wallpapers
Edit: updated apk to v0.97.6.7: Tried to save lost memory, to load settings more save for devices with slow file io. Added static gallery setting for fast refreshing large image gallery pictures after loaded once. + reddit as example for static gallery slideshow
Edit: updated apk to v0.97.6: New widget 4x2 size and finally selectable background color. Added reddit gallery (EarthPorn), seabreeze weather and a great Antwerpen (Belgium) harbour webcam as new examples.
Edit: updated apk to v0.97.4.19: Live! widgets in three sizes and with different content possible + widget context menu + fallback for missing images (advanced setting) + some internal rework
Edit: updated apk to v0.97.3.1: new Live! widget added (now paused when screen is off)
Edit: updated apk to v0.97.2.3: Widget repaired (!!) and other small changes + some crash fixes
Edit: updated apk to v0.97.1: Tutorial, some new animation examples + animated gifs also from sdcard now + website view and crash fixes
v0.97: new category of backgrounds: animation with some javascript/gif animation examples (this is a first version which still has to be improved!) + some crash fixes
v0.96.8.9: times stored/used in xml files, new extended image search fixes some sites which made digging more difficult
v0.96.8: first version of setup assistant + local pictures crash fix + again + trust all ssl certs ok + show crash fix + red screen fixed
0.96.7.1: show management and full mjpeg video streaming support (+ mjpeg change fix)
v0.96.6.3: local pictures (your gallery)/sites can also be showed, internal changes, more settings (+wifi reload fix)
version 0.96.3 has fixes again, runs google image search ok and streams (slow!) video in web snapshot mode
version 0.96.1 has fixes and new web view/snapshot
version 0.96 now you can create your own show!!! (and a lot of changes again)
version 0.95.1 with editable xml quickselection data and new options
version 0.95
Noone else thinking this is a great idea?
This enables you to get an automated cycling flickr-Wallpaper, the National Geographic Pic of the Day automatically on your homescreen. Or the latest News-Picture, or your wallpapers from many image galleries. And of course webcams ... and so on. I think this freedom and possibilities is what makes Android so great!
New version with asynchronous loading, much improved website parsing. Still a lot to do (performance, widget, website redirects supported, better organisation of links and settings, ...) and so little time. But I really think this one has to appeal to some more people than just on a few sports-forums I read/post where people enjoy watching webcams!?!
New apk attached to first post!
_miha_ said:
This enables you to get an automated cycling flickr-Wallpaper, the National Geographic Pic of the Day automatically on your homescreen. Or the latest News-Picture, or your wallpapers from many image galleries. And of course webcams ... and so on. I think this freedom and possibilities is what makes Android so great!
New version with asynchronous loading, much improved website parsing. Still a lot to do (performance, widget, website redirects supported, better organisation of links and settings, ...) and so little time. But I really think this one has to appeal to some more people than just on a few sports-forums I read/post where people enjoy watching webcams!?!
New apk attached to first post!
Click to expand...
Click to collapse
I'll def give this a try!
this is awesome! thank you..
This seems a brilliant yet simple idea and seems to be well done. I will give this a try but its not realy for me as i dont have a data plan and only really use my wifi at home to connect so the updates on the pic would not be frequent enough.....maybe one day I will treat myself.
Thanks for your hard work
Def. bookmarked for later use. Very good idea.
New version 0.84 with optimizations and better gallery support
Loading is faster now (and you can enable a progress bar if you are curious/need to know).
I also added an option to dig into picture galleries (load the large version of the image which looks much better as a wallpaper on highres phones).
For the next update I am working on cycling the gallery pictures instead of using the most recent "best" one so there will be even more Live for more 'static' webpages.
New apk attached to first post!
Awesome. Thanks!
Sent from my PC36100 using XDA App
Version 0.9
Has a lot of changes (hopefully good ones) with the loading and gallery stuff and a LOT of options to set everything fine.
For example WIFI exclusive updating has been added! Also the quick selections have presets now to explain useful settings for your sites ...
Still a lot to do. Next will be password protected webcam/server access.
0.9.1 fixes some things
no more default WIFI-only enabled (red screen if mobile at first start)
fixes of parameters for some quick selection items
no more crashes with wrong/incomplete URLs entered by hand
0.91 ... watch xdadevelopers (or other website) live on your homescreen background
See last screenshot attached to first post It's a hack (web snapshot) I may regret/have to replace by something else later and not fast. But should be ok for a lot of use cases.
And a lot of more serious updates like a sorted settings menu, access to standard password protected servers/cams, better gallery updating with long refresh times.
Edit: v0.91.1 can now be opened after install/in market for all those people not knowing what a wallpaper is!
Taking a look at this on my sgs!!
Dev, you should have more confidence in patience, it's a great idea ;-). I typically wait until things hit the RSS, so I'm sure you'll see a little spike since it just came up in the past 20 minutes.
Good luck! I do have a question, have you judged the battery life impact? I did see the custom refresh rate option, but still I am curious to see what impact it had on both your idle and active battery life stats if you update as often as a regular widget since it'll probably download more data.
Suggestions: Be able to set up a schedule
Preferably with different settings for different days. For instance, M-F have it set to use pic of the day with an update every 24 hours, then on weekends have it set up to show a web/weathercam every 15 mins.
Also, being able to set it, instead of every X seconds, being able to set it to update maybe 3x on M-F would help out in a few cases. Example, to see a traffic or weather cam just before going to/from work.
Good luck, I look forward to seeing what you do with it, I'll let you know my findings.
_miha_ said:
no more default WIFI-only enabled (red screen if mobile at first start)
fixes of parameters for some quick selection items
no more crashes with wrong/incomplete URLs entered by hand
Click to expand...
Click to collapse
all i can say is AMAZING
and also FOOTBALL scores as my live wallpaper FTW
come on you POOL!
Very nice. Works pretty well.
It would be real nice if you could get the picture to use the whole screen. Not sure if you are constrained by the site of course but I want to use this on my Archos 101 and it has a 1024X600 resolution so I get a lot of black bars.
Thank you for making this available.
Good idea.
How is on battery life though?
Very interested to see where this goes. Great idea IMHO. Subscribed.
Nice work.
Nice work. While trying this out, I ran across an issue. I accidentally the refresh time. If you enter nothing for the refresh time, it will force close (v0.91.2).
Great idea
Think of busy parents whose kids are in a daycare with kiddie cameras...live feed of your baby !
Awesome app. Ive bben wanting something like this for a while. Maybe could add some battery saving settings. thank you !!!!!!!

[APP][2.1+] HybridLauncher - Open Source

Im sorry, but as I'm not able to create external links on XDA yet, you have to enter the urls on your own. If I had been able to create a DevDB project, I would have done it.
HybridLauncher​
HybridLauncher is a completely new type of Android-Launcher!
It's designed to be highly configurable and innovative.
Screenshots:
As I am currently not allowed to insert images, please have a look at hybridlauncher.bricklore.de
In the past, the underlying principles of Launchers have significantly differed from those of desktop computers. In particular, the homescreen was only able to show Widgets and Apps, usually arranged on a grid, and usually only able to display a finite (small) number of icons at once.
We adapt the concept of desktops to smartphones by providing a homescreen whose capacity is limited only by your phone's memory and without constraints on the type of items it can show.
We improve the concept of desktops by providing not only completely free positions, but also arbitrary tilts, sizes, and aspect ratios of the items' icons. The homescreen's size is dynamically adapted, such that an infinite number of icons can be displayed.
Technically, the homescreen is simply a folder. Actually, every folder can be used as homescreen (and there's an effectively unlimited number of those). Other folders can be directly accessed (the HybridLauncher also doubles as a file manager) and individually designed, just like the homescreen.
This is solved in way robust against changes of your ROM:
The layout of every folder is stored in small file (".layout") directly within the folder. Thus, if you change your ROM, by reinstalling the Hybrid Launcher, you instantly recover your homescreen (desktop).
HybridLauncher is available in two different versions: "Lite" and "Full". While you can enjoy full functionality with the Lite version, it shows a permanent notification in the statusbar.
Unique features of the HybridLauncher include:
Unlimited homescreens with individual backgrounds
Real files on the homescreen just as on the pc-desktop
Freely positionable items with optional grid or magnetic axes
Items individually adjustable
Item size and rotation continuously adjustable
Dynamic layout-size
Direct execution of shell-scripts
Links to other folders and files
"Open with" dialog as known from PC
Highly adjustable
Available for Android version 2.1 up to 5.0+
Data privacy is our highest priority
(HybridLauncher does not require internet access, no data will be submitted)
For maximum transparency, let us explain why HybridLauncher requires the following permissions:
VIBRATE: When you long-press Items, your phone will vibrate.
WRITE_EXTERNAL_STORAGE: HybridLauncher is a filemanager. Thus, it should have permission to write on sd-cards. In particular, if you want to use a folder on the sd-card as homescreen, then a .layout file needs to be created on the sd-card.
WRITE_MEDIA_STORAGE: This is generally the same as WRITE_EXTERNAL_STORAGE, but on newer devices (5.0+) the access to the external sdcard is blocked by default and needs this extra permission.
READ_CONTACTS: Contacts can be placed on your homescreen (e.g. to open the SMS app quickly), so HybridLauncher has to access your contacts data. HybridLauncher will not submit any data (have a look at the source code).
SET_WALLPAPER: An app needs this permission to change the background image.
SET_WALLPAPER_HINTS: For background parallaxing the system has to be told the size of the wallpaper.
Information:
HybridLauncher is available in the Google PlayStore, or on my website (hybridlauncher.bricklore.de).
HybridLauncher Lite:
Play Store: play.google.com/store/apps/details?id=de.fluxnetz.hybridlauncher_lite
Mirror: bricklore.de/android/hybridlauncher/release/hybridlauncher_lite.apk
HybridLauncher is OPEN SOURCE and licensed under GPL v3, you can view the source here: git.bricklore.de/hybridlauncher
​
Changelog
* reservered post for changelog *
i like your launcher its very customizable and stuff but my wallpaper doesnt scale properly and is causing black borders around the picture which looks kind of ugly
If you could fix this id love to use the launcher
have a great day
tomdudler243 said:
i like your launcher its very customizable and stuff but my wallpaper doesnt scale properly and is causing black borders around the picture which looks kind of ugly
If you could fix this id love to use the launcher
have a great day
Click to expand...
Click to collapse
Thanks for your feedback!
I have just reimplemented the wallpaper scaling, which should fix the problem.
Please have a look at the update and tell me if it worked for you!
Best regards
Since your launcher is open source could you please add it to F-Droid? Would make it easier for people not using play store or gapps like myself to keep it updated than periodically checking your website
As a happy tester, here are the direct links to your really nice app until you can add your own:
https://play.google.com/store/apps/details?id=de.fluxnetz.hybridlauncher_lite
And/Und
http://hybridlauncher.bricklore.de
GerManiac said:
Here are the direct links:
https://play.google.com/store/apps/details?id=de.fluxnetz.hybridlauncher_lite
And/Und
http://hybridlauncher.bricklore.de
Click to expand...
Click to collapse
Added a screenshot
Looking good
It's nice to see a launcher that offers something slightly different. So many of them just seem clones of each other. The ability to place icons anywhere and not be constrained to a grid is something I've not personally seen before.
Allanitomwesh said:
Since your launcher is open source could you please add it to F-Droid? Would make it easier for people not using play store or gapps like myself to keep it updated than periodically checking your website
Click to expand...
Click to collapse
Although it seems quite a bit of work to do, I will hook myself into it right now.
--UPDATE--
It's not that easy for HybridLauncher, as the git repo is hosted on my own server which makes things more difficult (no https, minor problems). Additionally fdroid is not able to build from these souces without "understanding" the exact instructions (One has to preprocess the .java and .xml files in a special manner)
Unfortunately I wasn't able to figure out how I can add a prebuild binary .apk to fdroids repository. If you could guide me, I would supply those binaries until I have fixed my server issues.
GerManiac said:
As a happy tester, here are the direct links to your really nice app until you can add your own:
Click to expand...
Click to collapse
Thanks! I really appreciate all help I get!
savvigeek said:
It's nice to see a launcher that offers something slightly different. So many of them just seem clones of each other. The ability to place icons anywhere and not be constrained to a grid is something I've not personally seen before.
Click to expand...
Click to collapse
Yeah I have noticed the same thing, and thats why I made HybridLauncher.
I wanted to try something completely different.
F-Droid
I'm not a developer so I'm afraid I can't be much use troubleshooting your issues adding your app to F-Droid. I'll ask my friends who are and see what they say. You could also ask on the F-Droid forums,they are always willing to help add a new app
Thank you, really good work.
I cant download from play store....maybe its banned in my country....please can you provide apk or link to apk dwonload?
Sent from my HM NOTE 1LTE
@bricklore crashes when i swipe right or tap next on the welcome screen. log attached. my device is samsung galaxy y duos, gt-s6102, running gingerbread 2.3.6 rom. it's an ldpi device with 289 mb ram only.

[APP][OFFICIAL] KWGT Kustom Widget Maker (Android >= 4.4)

KWGT is KLWP little brother, if you do not want animations and per second updates or just need a widget, than, this is it! Same great customization, global properties, layers, effects, complex objects, live maps and a LOT of data, weather, astronomy, world clock, rss, you name it! And you can copy objects from KLWP too!
App is available on the play store: https://play.google.com/store/apps/details?id=org.kustom.widget
Or via manual download here: https://kustom.rocks/kwgt/apk
Use KWGT awesome WYSIWYG (What You See Is What You Get) editor to create you own designs and display any data you need, at once and without draining your battery as many others tools do! With Kustom Widget you can create customized Digital and analog clocks, live map widgets, sophisticated Battery/Memory meters, randomly changing images, music players and much much more. Imagination is the limit.
Official XDA Threads
Kustom Komponents Gallery (AKA reusable Widgets inside Kustom)
Kustom APK Skins Pack
What's the difference with Zooper, Mycw, Buzz or UCCW??
You have Komponents which are like widgets inside widgets or reusable items inside the editor. So for example you can create a clock and redistribute it as a module for KWGT, users will just add your clock and change the options you expose (like colors and font), there are many examples online on the store already or you can check the dedicated thread above
You can download content directly from HTTP, so you can have a Google Map with the city you are in directly in the widget background if you want, or use Street View, or you can have a Komponent that does that for you like this, you can add it with one click
You have global variables, so you can set a color once and then use it whenever you like, so, when you want to change it you just change the global and it will change the color everywhere in one click, this allows users of your theme to change color easily
You can create touch actions that will hide / show elements based on touch, so you can show full weather data when someone clicks on a weather icon and then hide it automatically after X seconds
You have containers, so you can group items inside an object, move them together, apply effects and rotation to the entire group
You have built in music support, so music will work without any additional tool, no music utilities needed, it just works
You have more effects, like long shadows, morphable text, blur images and so on
You can extract colors from images, cover art or anything downloaded from the internet (like kolorette does, but builtin)
You can use formulas on any property you like, no need to use "advanced parameters", you just turn a property into a formula and then you can do anything you like
You have full support for different location, so you can apply a location to any group and make a world clock in seconds, locations are then easily accessible from the settings
You have much more functions, you can download text from HTTP, use regular expressions, parse RSS, XML and JSON, do math with dates, create timers
Much better resizing, the widget will resize automatically and touch will always work on any module regardless of the orientation
A wizard to create APK skins in seconds without any Android development knowledge or additional tool except the JDK
Last but not least KWGT is much much more battery efficient, you can check this easily with a good battery monitor like better battery stats plus, Kustom has 2 processes so you can clearly see the difference between the editor and the real widget/wallpaper service)
Free Features
Some skin to start with and some Komponent (a Widget inside a Widget in Kustom)
Some free featured Komponents and Presets from the Play Store
Text with custom fonts, colors, sizes and effects
Shapes like Ovals, Rects, Arcs, Triangles, Exagons and more
3D flip transformations, curved and skewed text
Gradients, shadows, tiling and color filters
Progress bars Zooper like (but better!)
Photoshop / GIMP like layers with overlay effects (blur, clear, xor, difference, saturation)
Touch actions / hotspots on any object you create
Support for PNG / JPG / WEBp (also via HTTP download)
Complex programming with functions, conditionals and global variables
Dynamic download of content via HTTP (live maps, weather and so on)
Native music utilities (current playing song title, album, cover)
Weather with wind chill, feels like temperature and more
RSS and free XML / XPATH / Text download
Tasker support
A huge amount of data to display (like date, time, battery, calendar, astronomy (sunrise, sunset), CPU speed, memory, countdowns, WiFi and cellular status, traffic info, next alarm, location, moving speed, rom/device info and much more)
Pro
Remove the ADS
Support the dev!
Unlock import from SD and all external skins
Recover preset
Buzz Launcher import support
Save the world from alien invasion
Beta:
Opt in the beta program at https://play.google.com/apps/testing/org.kustom.widget
Wait 20/30 mins and install via market at https://play.google.com/store/apps/details?id=org.kustom.widget
More?
FAQ: https://kustom.rocks/kwgt/faq
Reddit Community: https://reddit.com/r/Kustom
Feature Requests: https://kustom.rocks/ideas
Translations: https://kustom.rocks/translate
APK Skin Howto: https://kustom.rocks/apkmaker
Screens:
{
"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"
}
I've been waiting for this thread. Awesome app!!
Good
:good:
I really like this app but coming from zooper, i found some most needed features missing like SMS, missed calls, gmail etc. I hope you include these along with whatsapp, facebook and twitter.
classna said:
I really like this app but coming from zooper, i found some most needed features missing like SMS, missed calls, gmail etc. I hope you include these along with whatsapp, facebook and twitter.
Click to expand...
Click to collapse
So unread counts are planned, for SMS missed calls and Gmail i will add a plugin if you are running android < 6.0. Whatsapp / FB and Twitter have no way to get unread counts BUT i will add notifications support so you will be able to count unread notifications. Stay tuned
frankmonza said:
So unread counts are planned, for SMS missed calls and Gmail i will add a plugin if you are running android < 6.0. Whatsapp / FB and Twitter have no way to get unread counts BUT i will add notifications support so you will be able to count unread notifications. Stay tuned
Click to expand...
Click to collapse
Great! it will be great to have most of zooper's customization features. Is there anyway to change the weather iconset? I liked zooper's resizable vector icons with option to change its color and alpha opacity.
classna said:
Great! it will be great to have most of zooper's customization features. Is there anyway to change the weather iconset? I liked zooper's resizable vector icons with option to change its color and alpha opacity.
Click to expand...
Click to collapse
Yeah sure, in KWGT you can even use SVG files for that and distribute them as Komponents, please check the "featured" section when adding a Komponent you will see many for download or search for Weather Komponents around, there are also some tutorials on the official page
Taking Zooper looks like abandonware, tryed this app. Look good, but placing text is a crime. Using Zooper you can give an area a destiny of text and regulate the max amount of lines, etc. Within KWGT I don't have real control over text items. This is a must have
Great potential....but not there yet (no buy yet). Hope it will (Love tweaking my homescreens!)
peebeenl said:
Taking Zooper looks like abandonware, tryed this app. Look good, but placing text is a crime. Using Zooper you can give an area a destiny of text and regulate the max amount of lines, etc. Within KWGT I don't have real control over text items. This is a must have
Great potential....but not there yet (no buy yet). Hope it will (Love tweaking my homescreens!)
Click to expand...
Click to collapse
I can add the max number of lines on next release, very easy, i do not however understand the "etc", what else is missing? Also did you check the list of things that Zooper cannot do compared to KWGT? Its here. I know i am biased but i think KWGT is years ahead.
I don't doubt that Already seen some nice extra's
I also see a lot of similarites with Zooper, which makes me think it is based on in a new iteration (which makes me doubt for buying before I know it fits). It also could be a new app which uses Zooper and takes it a level further. (Seen a reaction in another thread, other people are doubting because of this). My goal: Getting the right app to do the things I want with my home screen And yours looks promising
My main problem is the widget size, compared to the text control. I understand you translate 720 to all other devices. But if I edit "my widget", it only gets a width which is maxed for a halve or third of the screen (On my Galaxy S6 using nova launcher). This makes editing harder to do. Scaling is one option, but it does not yet works practical for me (PEBKAC ?)
Also changing orientation looks like it is missing a correct scaling (widget gets wider, but it looks like it is smaller). But it changes, instead of zooper . There is also a lag when changing orientation (default redraw timer, not reacting to orientation switch).
What I like would be a text region on my canvas, which I can position and give a height (or max height) and width.
Dimensions are now based on
- Fixed width, which does not give me enough control to position multiline text (control is lost especially in the vertical)
- Fixed Font height, which results in text running out of the screen
- Fit width, which does not use the amount of space in the vertical
My suggestion would be to separate the text and text region (settings).
- Setting the dimensions: (width fixed or relative E.g. 100%, height), give the postion (fixed or relative)
- Setting the font info: How to use the region e.g. fixed font size, fill, vertical/horizontal alignment, max amount of lines/single line, (max amount of characters ?)
The etc is/was a lazy way of saying the above
peebeenl said:
I don't doubt that Already seen some nice extra's
I also see a lot of similarites with Zooper, which makes me think it is based on in a new iteration (which makes me doubt for buying before I know it fits). It also could be a new app which uses Zooper and takes it a level further. (Seen a reaction in another thread, other people are doubting because of this). My goal: Getting the right app to do the things I want with my home screen And yours looks promising
Click to expand...
Click to collapse
This has nothing to do with Zooper, i started KLWP (and then KWGT) because i felt options on the store were really too bad in terms of resources and features and UI, so this is inspired by other widget makers (and wallpaper makers too) but completely on its own, so, you should avoid thinking about Zooper when using KWGT as its quite different on some fundamentals.
Anyway you do not actually need to buy KWGT since all features are available in the free version, but if you buy it and you feel you want a refund in, say, 1 month from now, just drop me an email, will refund.
peebeenl said:
My main problem is the widget size, compared to the text control. I understand you translate 720 to all other devices. But if I edit "my widget", it only gets a width which is maxed for a halve or third of the screen (On my Galaxy S6 using nova launcher). This makes editing harder to do. Scaling is one option, but it does not yet works practical for me (PEBKAC ?)
Click to expand...
Click to collapse
The widget is different from the live wallpaper, in the widget with no scaling "720" means the shortest side of the widget (so the height on a 4x2 or the width in a 2x4), but you should not care about that since there is no limit on that anywhere and scaling just changes how that size is interpreted (so with scaling set to 200 720 will become 360), not sure why is impractical, it just works and scales correctly (Zooper does not even scale, if you change the widget size you have to relayout manually...). If you scale a KWGT it will redraw and adapt based on its size automatically.
peebeenl said:
Also changing orientation looks like it is missing a correct scaling (widget gets wider, but it looks like it is smaller). But it changes, instead of zooper . There is also a lag when changing orientation (default redraw timer, not reacting to orientation switch).
Click to expand...
Click to collapse
You need to set Orientation to "AUTO" in the Widget settings, by default KWGT expects that your launcher orientation is locked. If you set it to AUTO it will draw properly in both orientation rearranging everything based on size, it will still have some lag, like 100/200ms depending on the complexity because KWGT will redraw everything (this is different from Zooper / UCCW they always draw both the landscape and portrait so there is no lag but they are much less efficient because you end up drawing something that you do not need most of the times doubling the resources required like RAM and CPU / Battery).
peebeenl said:
What I like would be a text region on my canvas, which I can position and give a height (or max height) and width.
Dimensions are now based on
- Fixed width, which does not give me enough control to position multiline text (control is lost especially in the vertical)
- Fixed Font height, which results in text running out of the screen
- Fit width, which does not use the amount of space in the vertical
My suggestion would be to separate the text and text region (settings).
- Setting the dimensions: (width fixed or relative E.g. 100%, height), give the postion (fixed or relative)
- Setting the font info: How to use the region e.g. fixed font size, fill, vertical/horizontal alignment, max amount of lines/single line, (max amount of characters ?)
The etc is/was a lazy way of saying the above
Click to expand...
Click to collapse
You can do max amount of characters or even ellipsize using $tc(ell, text, 10)$ for example, that will cut and if larger add "..." at the end. For everything else i think having the max number of lines combined with the fit width will do exactly what you want.
I was a zooper user for many years, and like others I began to realize that it appears to be an abandon product - certainly there were no updates for a long time.
I was looking to where to go in the future, and looked at all the similar products. KWLP (KWGT was not available at the time) appeared to be the most sophisticated of the alternatives.
I discovered that I was able to replicate all of my zooper widgets in KWLP - and it gave me even more capabilities. The only personal downside was that I prefered widgets (and the ease of placement on a page) to the live wallpaper. Then KWGT - gave me everything. In a very short time, I took all of my zooper, now kwlp items to kwgt. I now consider kwgt a complete (and then some) replacement to zooper. Bottom line, there was a small learning curve, but once past that I have everything I had with zooper and then some. On top of that, kwlp/kwgt is under constant development and super support from the developer. You can see from the responses above that he takes customer support and product quality/development very seriously. Zooper has no active development and I question if there is a future at all.
kwlp/kwgt has a very active user community on g+ (frankly I like xda forums better) - but there is alot of community and developer support.
Basically I made the switch and am very happy to have done so.
ew said:
kwlp/kwgt has a very active user community on g+ (frankly I like xda forums better) - but there is alot of community and developer support.
Click to expand...
Click to collapse
Thanks!! Happy to support on XDA too, just mention me if needed and i will try to answer ))
And welcome to Kustom!
Is it possible to backup (not export) my widget config and reapply it to a new widget?
PS, the config utility is very heavy, sometimes it loads up to 5 minutes. WTF?
---------- Post added at 09:16 PM ---------- Previous post was at 08:57 PM ----------
One more question. Can the progressbars use a formula as a parameter? Or only fixed parameters? And can a standard progressbar (battery) use a custom number of sections?
Not bad, I try
The latest version has a strange bug. $nc(csiga)$ often freezes and constantly displays 9 (not 99!) until I lock the screen. I never had this bug on Zooper, so it's not hardware or firmware.
siealex said:
Is it possible to backup (not export) my widget config and reapply it to a new widget?
PS, the config utility is very heavy, sometimes it loads up to 5 minutes. WTF?
Click to expand...
Click to collapse
This loading issue has been reported by more than one user, i cannot reproduce it on my device and it does not happen on the live wallpaper version (KLWP) so i can't really understand what its going on, can you create a full bug report as explained here: http://kustom.uservoice.com/knowledgebase/articles/615645-send-debug-data (follow the android bug report section), that will be very useful
To copy a widget into another you have 3 options:
Open the first, select all items press "copy" and then open the second and press paste
Export and then Import
Use Komponents (and export them as well)
siealex said:
One more question. Can the progressbars use a formula as a parameter? Or only fixed parameters? And can a standard progressbar (battery) use a custom number of sections?
Click to expand...
Click to collapse
Yeah sure, to create a formula based progress bar just do the following:
Set progress to "Custom", a new option will show called "Progress"
Select the option called "Level" and turn it into a formula
Use a formula that returns a value between 0 and 100 ($bi(level)$ for example)
Select the sections you need
siealex said:
The latest version has a strange bug. $nc(csiga)$ often freezes and constantly displays 9 (not 99!) until I lock the screen. I never had this bug on Zooper, so it's not hardware or firmware.
Click to expand...
Click to collapse
This is strange, will look into it (and thanks for reporting also in the G+ community)
Hi Frank,
I am creating an IOS style status bar and it is coming up nicely but i ran into a few issues. I am using a formula to set the visibility to ALWAYS or NEVER when bluetooth, airplane mode, wifi, carrier bars etc are turned on/off. It works perfectly for airplane mode, wifi, 3G/4G etc but there is a delay of say 5-10 seconds when i turn bluetooth and alarm on/off. Is there a way to speed up the refresh rate?
classna said:
Hi Frank,
I am creating an IOS style status bar and it is coming up nicely but i ran into a few issues. I am using a formula to set the visibility to ALWAYS or NEVER when bluetooth, airplane mode, wifi, carrier bars etc are turned on/off. It works perfectly for airplane mode, wifi, 3G/4G etc but there is a delay of say 5-10 seconds when i turn bluetooth and alarm on/off. Is there a way to speed up the refresh rate?
Click to expand...
Click to collapse
So for Alarm its not currently because android does not actually "broadcast" the change, i am working on a better approach on Android 5.x or better but i am not sure that will entirely fix this.
For bluetooth it will be fixed in next release (just forgot to register a listener for that)
frankmonza said:
So for Alarm its not currently because android does not actually "broadcast" the change, i am working on a better approach on Android 5.x or better but i am not sure that will entirely fix this.
For bluetooth it will be fixed in next release (just forgot to register a listener for that)
Click to expand...
Click to collapse
Great! I look forward to next release. I forgot to mention that 3G/4G [ nc(dtypes) ] also takes a while although it is usually less than 5 seconds but delay is still there.
Question: Suppose we have 3 items like shape1, shape2 and shape3. They are horizontally or vertically displayed inside a stacked group. If i set the visibility of shape2 (middle one) to "NEVER" it disappears but it still takes that space and there is a big gap between shape1 and shape3. Is there a way to snap shape3 to shape1 so there will be no gape if the visibility of shape2 is set to NEVER? This is currently causing some design issues and i can't find a way to fix this.
Cheers.

Categories

Resources