(REQ) KitKat 4.4 Font - Nexus 5 Q&A, Help & Troubleshooting

anyone with the image about to pull the new font and make it in to a flashable zip please

me too !
but I want it .ttf

here

lbrfabio said:
here
Click to expand...
Click to collapse
Arabic font plz

here are new Roboto Condensed Font as flashable zip and the normal KitKat Roboto Fonts for flash!!!Simply flash in recovery.

And an apk guys where?
Sent from my GT-N7100 using Tapatalk

-CALIBAN666- said:
here are new Roboto Condensed Font as flashable zip and the normal KitKat Roboto Fonts for flash!!!Simply flash in recovery.
Click to expand...
Click to collapse
Anyone have some side by side screen compares? I haven't seen roboto compressed in action.

famewolf said:
Anyone have some side by side screen compares? I haven't seen roboto compressed in action.
Click to expand...
Click to collapse
Compressed?

eduds said:
Compressed?
Click to expand...
Click to collapse
Ok...I'll clarify that I meant Condensed for those special people who couldn't figure it out based on the post I quoted.
Code:
compress (third-person singular simple present compresses, present participle compressing, simple past and past participle compressed)
(transitive) To make smaller; to press or squeeze together, or to make something occupy a smaller space or volume.
(intransitive) To be pressed together or folded by compression into a more economic, easier format.
Our new model compresses easily, ideal for storage and travel
(transitive) To condense into a more economic, easier format.
This chart compresses the entire audit report into a few lines on a single diagram.
(transitive) To abridge.
If you try to compress the entire book into a three-sentence summary, you will lose a lot of information.
(technology, transitive) To make digital information smaller by encoding it using fewer bits.
Code:
condense (third-person singular simple present condenses, present participle condensing, simple past and past participle condensed)
(transitive) To decrease size or volume by concentration toward the essence.
To make more close, compact, or dense; to compress or concentrate.  

Can someone please post it as flipfont apk for flashing on the gaLaxy s4 Android 4.3? Thanks in advance...
Sent from my GT-I9505 using Tapatalk

I used flashable zip with new fonts and font changed everywhere (in applications for example) but didn't change only in Android Settings. Do you know why?

Related

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

[THEME] UPDATE-APR6 SE21ROMS-HTC Sense image import for x10a/i

UPDATE: VERSION3, NEAR FULL IMAGE PORT, RELEASED. SCREENSHOTS UPDATED. VERIFIED 1 THEME UPDATED WILL WORK ON ALL 3 FRAMEWORKS; 016, 435, 06. ALL IDENTICAL. NO DIFFERENCES, NO PROBLEMS.
SCREENSHOTS;
NEW DOWNLOAD V3: HTC THEME IMPORT FOR SE21ROMS. NO WIPES. JUST APPLY OVER ANY SE21ROM (FW VERSIONS; 016, 06, AND 435)
Code:
http://www.multiupload.com/U0ULDNB4VX
DATED THREAD: HTC THEME prepackaged in my SE21 MODROM
.016 firmware: http://forum.xda-developers.com/showthread.php?t=1012528
DOWNLOAD V2: requested by @paolo599 just has added messaging icons
.435/16/06 firmware: http://www.mediafire.com/?gftuoohuubm6u8o
DOWNLOAD V2 hdpi image TEMPLATE set extract for THEMERS for SE21ROMS:
http://www.megaupload.com/?d=AE8KKF9H
V1 FLASH RECOVERY DOWNLOADS FOR:
.435/16/06 firmware: http://www.mediafire.com/?tzhbfaz2ysxzllt
--
V3 NOTES: this new update replaces most the sony program app and widget icons with htc's full squared ones, instead of sony's dainty blue accented angled ones that don't match any other app. also, more status bar images were found to update as well. the theme update also indirectly gives you a neat looking dialer and contacts, a boring mediascape, and i think a greater contrasted black/blue timescape. the leftover blue accents are only specific to most the unwanted sony apps in the first place, and probably account for some 5-10 percent remaining of odd named images requiring replacement. thats to be polish later. i need to move on to freex10 for now, among other device projects.
template notes; some 600 unique images were extracted from an htc framework. the only images touched by me in framework-res.apk were the default_wallpaper.jpgs's for resolution adjustment (i resized w/out distortion and cropped for x10 resolution) and the statusbar_background converted to a draw9 image. the conversations.apk consists of htc images and a couple cut/paste/template jobs i did.
REQUIREMENTS: download the correct theme update for the se21rom firmware specified. theme is applicable to any rom based on sony stock 2.1 firmware w/ framework-res.apk intact. (clarified by mod request)
INSTRUCTIONS; flash custom zip from xRecovery. No wipes required.
download links for xRecovery and latest firmware at end of post.
---
this is an imageset import of the htc sense framework (500+ images) for a change from the sony x10 blue interface to a htc sense grey interface.
this is only the bare framework import, which means all regular apps should have the general appearance of using a htc sense based device.
this is presently version 1, the only customization that had to be done beyond importing the images was modifying the statusbar image to work as a draw9 image for the sony.
sony's present text color scheme appears to match the htc sense setup, as opposed to the aosp text color scheme.
notes; there is little to no difference in the files between the x10i and x10a/rogers firmware. they share some 1200 binary identical files, including the framework, so compatibility for x10i vs x10a is not an issue.
i will continue to port this theme into the newest firmware and work on additional versions that will strip or modify the blue phone/contact application interface in addition to providing new themes and mods in the near future.
---
please don't fill this thread with personal feedback. hit the "thank you" button if you like it, otherwise pm any personal feedback you have about the theme. i'd rather responses were limited to technical feedback or screenshots of anomolies to correct.
back up your phone. if my themes and mods break your phone, i don't have the time to help you. they work for my phone.
xRecovery flash updates available for other firmwares AND roms upon request.
---
xRecovery by zdzihu @xda; [RECOVERY] xRecovery 0.3-release | UNIFIED - ALL X10 VARIANTS | 31/01/2010 - xda-developers
firmware provided by arkedk @xda; [Firmware] X10i 2.1.1.A.0.16 for FlashTool - xda-developers
works for .435?
@paolo599 I can make an update zip w the 435 framework, yes. I'll check to see if thats necessary and post an answer or recovery update today for that, and maybe the 016 today. Thanks.
Sent from my X10i using XDA App
added download for use on .016 firmware.
.435 firmware download to follow shortly.
good job...
just make it clear in the title itself that this is for 2.1 Stock SE ROMs
@doomlord, i've updated my original post and title per your requests as my present list of flashable zips fit the request.
i however didn't wish to limit the scope of folks viewing my theme as i am willing to import themes (mine or any other) into any rom for the x10 at the moment upon request.
..any requests?
@paol0599; 435 update available; for se21 based roms; not aosp/cm.
great work bud. thanks
Sent from my X10a using XDA App
can you add the htc sense message notification icon aswell please. its the only thing missing
@paolo599, is there a chance you could post a screenshot of that?
most standard statusbar notifications are stat*.png images, but i don't see the one you're speaking of. that could be in the messaging apk itself, which i can add in a few days as a fuller v2 theme, w/ the v1 being a "lite" framework release only.
screenshot, please. i recommend "ShootMe" from the marketplace, or "ddms" from the android sdk "tools" folder for screenshots.
thanks.
Nm. I found them in the conversations.apk. Will correct shortly.
Sent from my X10i using XDA App
bestialbub said:
Nm. I found them in the conversations.apk. Will correct shortly.
Sent from my X10i using XDA App
Click to expand...
Click to collapse
cheers mate
Sent from my X10a using XDA App
bestialbub said:
@doomlord, i've updated my original post and title per your requests as my present list of flashable zips fit the request.
i however didn't wish to limit the scope of folks viewing my theme as i am willing to import themes (mine or any other) into any rom for the x10 at the moment upon request.
..any requests?
Click to expand...
Click to collapse
try n port it on (2.2) FreeX10-beta4, (2.3) CM7RC2, actually for 2.3 (CM7 based roms) try n make a theme which is compatible with t-mobile theme chooser... so it will be easier for users to apply it on CM7
@doomlord, thats a tall order.
i have freex10 next on the rom list for import, w/ more hoops to jump thru, as that will require recompiling resource values, and not just a simple png/xmlmod push.
i do have on my list to upload the image template i use for se21roms. i was going to wait until i doublechecked and wrote an xml for metamorph to use to give another easy option for installation before getting on recompiling aosp/cm rom frameworks or learning unfamiliar theme installers. but they're on the list!
great job, amazing, but i´m looking for the Sense launcher, with the half circle and the thre shortcuts.
@g00x, if you want a true representation of the sense launcher you should look at launcher pro w a sense dock image or helauncher, which has internal docks for sense as well as gb.
I have done sense dock customizations before. What i can do for the se launcher is reskin it to look like the sense dock, but w the buttons functioning as they presently do; left and right buttons will scroll screen and center will open applauncher, w the existing launcher dots and apphome icon nicely overlaid in the sense dock button areas.
Sent from my X10i using XDA App
g00x,
Maybe the best for you is Lp Sense,
Search here on xda "launcher pro sense mod" and you'll got it)
Sorry, i cant post a link cause i dont have 8 post yet.
Sent from my X10i using Tapatalk
Looks great! Anyway, any new features in v2 to look out for?
Thank you so much. this is awesome. I got so tired of looking at blue blue blue on my screen. Are you going to mod the dialer, messaging, etc too? I would suggest to keep it the same as HTC sense colours since it looks awesome.
^^^ agreed

[GUIDE] Modding the Stock ICS 4.0.3 Launcher | No Search | 4x5 Grid | 1-7+ Screens

Introduction
I originally removed the search bar and changed the stock grid in the Galay Naxus ICS launcher (here) and it was a well received mod.
Since Android was updated to 4.0.3 my method broke and needed to be adapted. On top of this a lot of people have asked me how it's done so they can apply it to other ROM's. In the interests of the community I have therefore written some basic instructions to allow you to do this and some other stuff by yourself. I've provided a link below to a Google Doc.​
How To
Remove the search bar
Increase the grid to 4x5 (or anything you like)
Decrease the number of home screens below 5
Increase the number of home screens above 5
Notes
Note that these are written for a specific version of the launcher and you may need to adapt some things as you go but this will probably make the journey easier.
You will need to know how to use apktool before you start.​
All Here
Tweaking the ICS Launcher (Google Doc)
If this helps you, remember to hit 'Thanks' below.
Thank you very much... do you know how to optimize the launcher to be 240 dpi compatible?
jairmoreno said:
Thank you very much... do you know how to optimize the launcher to be 240 dpi compatible?
Click to expand...
Click to collapse
No, not off the top of my head, I've never tried.
But I'm pretty sure you'd start with /res/values/dimens.xml. I'd make no other changes first and then just manipulate the grid size and margins/padding a little by little in /res/values/dimens.xml until you got the desired result.
After that you could then proceed to make other changes as required.
If you find the ideal layout for 240 let me know and I'll add it to the doc and provide credit.
Very nice. So in order to nuke the search bar and keep the native screen layout, could one just edit the search_bar.xml? Or would we need to do the smali edits as well?
You're awesome, I used your galaxy nexus apk and just tweaked the values in the xml using your guide so it would display properly on my SGS and i'd get to keep the transparent folder mod you did. Many thanks for the guide and for figuring out the method. It's great having 5 rows and no Google bar Now I can use stock launcher as my default again, love the animation while going through app drawer.
nice!thank u
launcher adjust
I know this an older thread but, I would like to change to the app flow from right to left to up and down if possible in the drawer? cm9 standard launcher. What's the XML edit for it?
craz6r said:
I know this an older thread but, I would like to change to the app flow from right to left to up and down if possible in the drawer? cm9 standard launcher. What's the XML edit for it?
Click to expand...
Click to collapse
I'm not sure that would be a simple xml edit I'm afraid. I don't know where that's constructed off the top of me head sorry.
Thanks a lot for this! Modded the stock Jellybean Launcher2.apk with the help of your guide!
fritzhy said:
Thanks a lot for this! Modded the stock Jellybean Launcher2.apk with the help of your guide!
Click to expand...
Click to collapse
No problem.
Even though I use Nova I did it too with the JB launcher. I noticed that you can also change a couple of things in dimens and integers too.
Max folder size = 20
folder x = 4
folder y = 5
folder cell width = 85 (or something close to that)
That will also give you 4x5 folders, centred on the screen with 20 items max (instead of 16). Perfect.
I'll update the guide at some time...
djmcnz said:
No problem.
Even though I use Nova I did it too with the JB launcher. I noticed that you can also change a couple of things in dimens and integers too.
Max folder size = 20
folder x = 4
folder y = 5
folder cell width = 85 (or something close to that)
That will also give you 4x5 folders, centred on the screen with 20 items max (instead of 16). Perfect.
I'll update the guide at some time...
Click to expand...
Click to collapse
Hah yeah I'm using Nova now aswell, for some reason the voice search button on the permanent search bar was still clickable, even though I had made it invisible...

[Aroma] [Font] FontFly

We Xperia user often fall behind when it comes to font changing ability. Custom ROMs sometime may have the facility. But to have some font installed we have to flash whole ROM?!?.
I think it's a good idea to have something single yet more powerful with different option in case of the font changing ability. NOW THIS IS NOT beyond our imagination since, I'm presenting you: The FontFly an Aroma based font installer for our beloved Xperia. Hope you like it.
[Warning] :
I've worked hard to make this work. SO,
> Do Not Copy My Aroma or Script if I caught you, will be reported
> Do Not Use in ur Rom without my permission
> Do Not Modify and Share with other without my permission
> Have respect and peace
Click to expand...
Click to collapse
[Explanation] :
Why change v1.00 to Part 1???
As I'm thinking to do some more update. I came to believe it will increase the file size accordingly. If I add some more maybe it could become something like 100MB then, 150MB, then 200MB!!! . So, I apologize for the incorrect mention of that. From NOW ON I'll CALL THIS as PART BASIS. Like Part I, Part II, Part III etc. THANKS.
Requirements:
[Instruction]:
Copy to SD card or phone memory
Turn off phone & go to recovery
choose install zip file
Choose Downloaded file
Aroma will start
Follow on screen instruction.
[If Device won't bootup]
* Flash other font that work and report here.
Download:
Part II Download
Part I Download
[Issues]:
You may find something that should be fixed. Please let me know.
[Credits]
Ahmad Amarullah for Aroma
Me
Press Thank button instead of Say thanks.
XDA:DevDB Information
FontFly, Tool/Utility for the Sony Xperia Z1
Contributors
xminirom
Version Information
Status: No Longer Updated
Current Stable Version: II
Stable Release Date: 2014-01-07
Beta Release Date: 2014-01-01
Created 2014-01-28
Last Updated 2016-03-15
Reserved
[Changelog]:
part 4
* Build: Sea'07'feb'14
* 50 Font Included
* Live Font Preview
>>Second Release<<
* Build: Heat,7,14 PART II Released
* 70+ Font included
>>Initial Release <<
* Initial Release - Part I - BUILD: election'04,14
* Initial Release
* Aroma Based
* Can show preview
* 50+ Font included
-----------------------------------------------------------------
-----------------------------------------------------------------
Font List Part v:
Apple Garamond
Apple Mint
Arista Light
Armani
Aspergit
Averia Sans Libre google
Batman Forever
Blambot
Bolonewt
Cabin Condensed
Clemente
Dekar
Disco mod Bold QF
Drakalligro
Enso
Fineness Pro
Giger
Gotham
Gotham Narrow
Gotham Narrow Light
Gotham Rounded
Hand of Sean
Hand of Sean Smaller
Helvetica Neue Thicker
Helvetica Taller
Hero
HTC Hand
Ishotthe Serif
LG Smart Gothic Light
Martell
Minya Nouvelle
Neiga
Ohds5
Opificio Serif Bold
Over the Rainbow Google
Poetsen One
Pycuaf
Rastigo
Rastigo Bold Larger
Rastigo Light
Sforson Casual Bold
Simplicity Bold
Tekton
Tenor Sans
WP8
WP8 Light
WP8 Light CN
Yaahowu
Yaahowu Wider
Zawgyi One
Znikomit
Font List Part iv:
Advent Pro
Alegreya
Amarath
Amarath Bold
Anonymous Pro
Antipasto
Arual
Bailey
Bariol
Borgia Pro
Bowhouse Bold
Capsuula
CF Jack Story
Chalet Book
Champagne & Limousines Bold Larger
Chantelli Antiqua
Chantelli Antiqua Smaller
Cool Jazz
Cursive
Dax
Dax Light
Delicious
Dimbo
Emma Sophia
Emma Sophia Smaller
Ethnocentric
Giorgio Bold
HUCat122
Hug Me Tight
Jolly Bold
Junkos Typewriter
Lazy Day Bold
Merge Light
Relay
Rhyder
Rix Love Fool
Romance Fatal Serif
Santor
Science Fair
Simpsons
Source Sans Pro
Storopia
Tetre
Traveling Typewriter
UhBeeDami
VAG Rounded Regular
WeblySleek Thicker
Xperia Z1 Regular
Zrnic
Zrnic Light Condensed
Font List Part III:
A beat
A beat by Kai Conden
Aller
Anklada
Asap
Bellota
Bowhouse
Candara
Cleanvertising
Cleanvertising Thick
Coconut Medium
Comfortaa
Diavlo II 37
Digicity
Discreet
Essence Sans
Existence
Georgia Belle
Evil Genius
Helvetica Neue v2
Jolly
Lanenar
Lanenar Thicker
Magneto
MavenPro
Neuropol X
NokiaPure Tall
Nokia Pure v2
Nyala
Open Sans
Open Sans Condensed
Passing Notes
Poetsen One
Qlassik
Quirky & Messy
Roboto Condensed Light
SamsungSans S4 Original
SamsungSans S4 Original CN
Sanitechtro
SaturnPlus
Scifly
Segoe WP Original
Segoe v2
Soma
Soma Bold Taller v1
Sony Xperia Z Original
Spring steel
Typomoderno
Vavont
Veggieburger
Font List Part II:
Aleo
Aleo Light
Android Logo
Arch Rival
Avenir Next Ultra Light
Cantarell
Century Gothic
Champagne and limousines
Andrea Print Upright
Corporate Rounded 10
Chivo
Dolce vita
Olney
Juice italic
Lido STF
Monako
Oswald
Plentiful
Quantico
Quicksand 20
Ubuntu Tall
PT Sans
Action-Man
Alegreya
Alegreya SC
Arimo
Teen
Tinos
Vollkorn
Berylium 30
Caudex
Charis-SIL
Cicle
Clear-sans
Communist
Crimson
Cuprum
Dustismo
Dustismo-Roman
Exo 2 Extra 40
Exo-2
Gentium Basic 2
Gentium-Basic
Jura
Karla
Liberation-Serif
Lora
Luxi-Sans
Marvel
Neuton 50
Neuton style 2
New-Cicle
Noticia-text
Noto-sans
Noto-serif
Panefresco
Panefresco style 2
Panefresco style 3
Panefresco style 4
Playfair-display 60
Playfair-displaysc
Simonetta
Ache
Alphaville
Arbeka
Bangle
Caecilia
Chaney
Dialog
Diamante 70
Obsolete
Segoe UI
Venera
Android 4.3
Android 4.4
Walkway
Font List Part I:
Calibri Font
CartoonistHandAllCaps Font
CartoonistHand Font
CaviarDreams Font
ChinaCat Font
ChocoCooky Font
Cocon Font
Consolas Font
Bauhaus ITC
Arvo
Avenir
BrookHouse Font
Biko Font
Brixton Font
LucidaCalligraphy Font
MerriweatherSans Font
Monofonto Font
MyriadPro Font
Neuropol Font
NokiaPure
Continuum Font
Covington Font
Economica Font
Engebrechtre Font
EssenceSans Font
Exo Font
ExpletusSans Font
FlorenceSansAllCaps Font
Futura Font
Helvetica Font
HelveticaNeue Font
JosefinSans Font
JosefinSlab Font
Klinic Font
Komika Font
Kontrapunkt Font
Lato Font
Rosario Font
Rosemary Font
Sansation Font
Signika Font
SonySketch Font
SonyXperia Font
OpenSansCondensedLight Font
OpenSansLight Font
Raleway Font
RobotoBold Font
RobotoCondensedBold Font
RobotoSlab Font
RobotoThin Font
Tertre Font
TimesNewRoman Font
TitilliumWeb Font
TrebuchetMS Font
TypographPro Font
Ubuntu
WeblySleekUI Font
Zekton Font
Nice....
Tnx for this..
Your Box is down (bandwidth issues) but XDA storage is working great.
Sent from my C6903 using Tapatalk
Thanks.
What if someone would like to revert to stock fonts? How should we proceed?
Sent from my C6903 using XDA Premium 4 mobile app
I can not download.
bogdan wst said:
Thanks.
What if someone would like to revert to stock fonts? How should we proceed?
Sent from my C6903 using XDA Premium 4 mobile app
Click to expand...
Click to collapse
You can try to flash this zip.
Thanks man! tried it on my xperia tablet z. used arch rival font..:good:
Set one font on iHackers, the phone is off and do not include. Helped cleaning cashe and dalvik.
superb~ work very well. maybe i will try one font for one day. all font seem very nice =)
@xminirom the xda download server isn't working, any chance of having it reuploaded on dropbox or google drive. Thanks
xminirom said:
Aroma based font changing ability available for you phone. Custom ROMs sometime may have the facility. Idea is to have something single yet more powerful with different option in case of the font changing ability. NOW THIS IS NOT beyond our imagination since, I'm presenting you: The FontFly an Aroma based font installer for our beloved Android. Hope you like it.
I've Made this little utility to meet my own necessity. Cause, My Xperia don't have such option to do that (I think they Should include such option in personalization menu.) But, this little fella could be used to Any Android PHONE. The reason behind this is, every font are stored in same location System/fonts. And this tool does the same thing for any device. It changes or we should say overwrites the fonts so we could use new font applied.
So, don't be shy. Just Try.
Requirements:
Any ROM (Maybe!)
[Instruction]:
Copy to SD card or phone memory
Turn off phone & go to recovery
choose install zip file
Choose Downloaded file
Aroma will start
Follow on screen instruction.
Troubleshoot+Problem ::: Solution
Q: After Flashing Font Phone isn't/won't Bootup!
Q: I'm getting Bootloop! WTF!!!
Ans: Don't Panic. Cause, Everything is OK. Everything is there Your ROM, Your DATA. Just the font not working for ur phone.
First Option: Go to recovery again and Just Flash Any other font (It could be part I or Part II cause there is 50+), see if it works.
Second Option: If first option didn't work> try to install Android 4.4 (Kitkat) / Android 4.3 font From FontFly Part II >if not successful report here And
Third Option & last hope: Google for flashable 4.4 font>Flash it>phone will be ok.
Q: How to revert/Go back to Stock Font?
Ans: install 4.4/ 4.3 Fonts from Part II
Q: How to revert/Go back to Sony Stock Font?
Ans: Flash SonyXperia Font in FontFly Pack 1
Download:
XDA Storage
[Credits] (Remind me if I'm missing anyone Pls)
Ahmad Amarullah for Aroma
Chromium_ for font
gianton For font
leventccc for font
tantrums for font
Me
Press Thank button instead of Say thanks.
XDA:DevDB Information
FontFly, a Tool/Utility for the Sony Xperia Z1
Contributors
xminirom
Version Information
Status: Stable
Current Stable Version: II
Stable Release Date: 2014-01-07
Beta Release Date: 2014-01-01
Created 2014-01-28
Last Updated 2014-01-28
Click to expand...
Click to collapse
hello sir,can i port your app on my new rom?...I named it "MATRIX Rom" for xperia l 4.2.2 (the rom is 70% complete and it is still initial release) i will upload the rom once it complete
Is this font changer just for Rooted devices. If so I don't want to really root my phone, but I am eager to latest it out.
Thanks in advance
xposed
Im currently using PERAPPFONTS via xposed framework.
Will this cause any issue when used together??
Part 5 Released 28 April 14 (Part i & ii repacked)
awesome :good: many thanks
Do this packs have HTC Sense 6 font ? I very like the HTC font on Monx's rom : http://forum.xda-developers.com/showthread.php?t=2463675
funky0308 said:
Nice....
Tnx for this..
Your Box is down (bandwidth issues) but XDA storage is working great.
Sent from my C6903 using Tapatalk
Click to expand...
Click to collapse
Greetings dude. Just want to know where do you get your flashable fonts? I downloaded some before but it got issues regarding kitkat. Thanks in advance.
Hi..I'm looking for Cataneo BT font.. Is anybody can share with me?..thanks..
Sent from my D6503 using XDA Premium 4 mobile app
Amazing collection, but what fonts are CentralEuropean?

[guide] aosp theme porting

Due to the fact that I finish work with the resources tw, do a guide for developers to update the version AOSP theme, you can use all the resources, but strictly indicating the author.
Simply copy the modified application of the following files:
framework-res.apk
values/styles
values/colors
values/dimens
drawables/AOSP_THEME
drawables/tw_screen_background_selector_dark
png's
framework-res\res\drawable-xxhdpi:
tw_switch_track_mtrl_alpha_disabled.9
tw_switch_track_mtrl_alpha_on.9
tw_switch_track_mtrl_alpha_off.9
SecSettings:
values/styles (Some lines are sometimes not available or there is some extra, they are usually not more than five, and they are usually in a row. So sometimes you have to edit the file manually)
values/colors
values-xxhdpi/colors
values-xxhdpi/styles
drawable/color_tab_text
Layouts:
battery_history_chart
installed_app_details
nfc_explain
pen_detach_layout
power_saving_mode_tips
power_usage_details
preference_offload_progress_category
preference_progress_category
process_stats_details
process_stats_mem_details
reading_mode
recommended_apps_settings_layout
separator_label
sim_change_alert
To make the style separator AOSP:
layouts/list_view_category
drawables/menu_separator.9
drawables/menu_separator.9
SecSettings\res\xml\wifi_connecting
png's
drawable-sw360dp-xxhdpi\tw_switch_track_mtrl_alpha.9
drawable\tw_switch_track_mtrl_alpha.9
systemui.apk
How to make Sun shape AOSP brightness handle on notification panel
Breakcore_Rush said:
Due to the fact that I finish work with the resources tw, do a guide for developers to update the version AOSP theme, you can use all the resources, but strictly indicating the author.
Simply copy the modified application of the following files:
framework-res.apk
values/styles
values/colors
values/dimens
drawables/AOSP_THEME
drawables/tw_screen_background_selector_dark
png's
framework-res\res\drawable-xxhdpi:
tw_switch_track_mtrl_alpha_disabled.9
tw_switch_track_mtrl_alpha_on.9
tw_switch_track_mtrl_alpha_off.9
SecSettings:
values/styles (Some lines are sometimes not available or there is some extra, they are usually not more than five, and they are usually in a row. So sometimes you have to edit the file manually)
values/colors
values-xxhdpi/colors
values-xxhdpi/styles
drawable/color_tab_text
Layouts:
battery_history_chart
installed_app_details
nfc_explain
pen_detach_layout
power_saving_mode_tips
power_usage_details
preference_offload_progress_category
preference_progress_category
process_stats_details
process_stats_mem_details
reading_mode
recommended_apps_settings_layout
separator_label
sim_change_alert
To make the style separator AOSP:
layouts/list_view_category
drawables/menu_separator.9
drawables/menu_separator.9
SecSettings\res\xml\wifi_connecting
png's
drawable-sw360dp-xxhdpi\tw_switch_track_mtrl_alpha.9
drawable\tw_switch_track_mtrl_alpha.9
Click to expand...
Click to collapse
hmmm i dont understand about this porting..
plis teach me..
yuannovesa said:
hmmm i dont understand about this porting..
plis teach me..
Click to expand...
Click to collapse
http://forum.xda-developers.com/galaxy-note-3/themes-apps/amazing-aosp-theme-lollipop-n900-t2978515.

Categories

Resources