[theme] transparent_app_drawer_rosie 1/10/13

Search This thread

fernando sor

Inactive Recognized Themer
Sep 7, 2010
9,744
5,640
12
north of the wall
Re: transparent_app_drawer_rosie 1/10/13

Its all good. That's to Ultra Comprare, I was able to figure out how u did it.

Is that Boolean switch hard to port?

Sent from my HTC6435LVW using Tapatalk 2
What lyapota did was write his tweaks into the HTC settings apk. The switch in rosie goes in the same place you just referenced. Then it is toggled off and on in settings. He is very cool with sharing and steal25 and myself have added to it. Mostly steal though as I have been busy. I do plan on porting the whole mod to the dna though.

Sent from my HTC6435LVW using xda premium
 

MicroMod777

Recognized Contributor
Re: transparent_app_drawer_rosie 1/10/13

What lyapota did was write his tweaks into the HTC settings apk. The switch in rosie goes in the same place you just referenced. Then it is toggled off and on in settings. He is very cool with sharing and steal25 and myself have added to it. Mostly steal though as I have been busy. I do plan on porting the whole mod to the dna though.

Sent from my HTC6435LVW using xda premium

U know the code to make Rosie 5x6? I can't find the code for that anywhere.

Thanks

Sent from my HTC6435LVW using Tapatalk 2
 

MicroMod777

Recognized Contributor
Re: transparent_app_drawer_rosie 1/10/13

Finally, got it all working for new ota.

5x6 edits are in:

res\values-normal-port\integers.xml

and

res\values-normal-xxhdpi\

Here's the 5x6 transparent, landscape Rosie.apk for the new ota!

Thanks to nitsuj17 for 5x6 original edits that I was able to find.


http://www.androidfilehost.com/?fid=9390331926465740882

Now all we need is apm to be ota'd.

Sent from my HTC6435LVW using Tapatalk 2
 
Last edited:

fernando sor

Inactive Recognized Themer
Sep 7, 2010
9,744
5,640
12
north of the wall
Re: transparent_app_drawer_rosie 1/10/13

Finally, got it all working for new ota.

5x6 edits are in:

res\values-normal-port\integers.xml

and

res\values-normal-xxhdpi\

Here's the 5x6 transparent, landscape Rosie.apk for the new ota!

Thanks to nitsuj17 for 5x6 original edits that I was able to find.


http://www.androidfilehost.com/?fid=9390331926465740882

Now all we need is apm to be ota'd.

Sent from my HTC6435LVW using Tapatalk 2

Post the policy jar I'll look at it. I'm on old still
 

MustafaHadaKing

Senior Member
Aug 2, 2011
867
1,246
Boston
Post the policy jar I'll look at it. I'm on old still

http://d-h.st/nah

---------- Post added at 06:32 PM ---------- Previous post was at 06:18 PM ----------

Finally, got it all working for new ota.

5x6 edits are in:

res\values-normal-port\integers.xml

and

res\values-normal-xxhdpi\

Here's the 5x6 transparent, landscape Rosie.apk for the new ota!

Thanks to nitsuj17 for 5x6 original edits that I was able to find.


http://www.androidfilehost.com/?fid=9390331926465740882

Now all we need is apm to be ota'd.

Sent from my HTC6435LVW using Tapatalk 2

thanks :), do you mind giving a link for a download of 4x5 drawer
 

MicroMod777

Recognized Contributor
  • Like
Reactions: MustafaHadaKing

Top Liked Posts

  • There are no posts matching your filters.
  • 10
    here is rosie with trans app drawer. im posting because ive had requests.

    I wont mod this in any way so please dont ask. im putting here for devs to use in their roms or for flash alone mod.

    also landscape enabled

    DEODEXED ONLY

    here is a tutorial on mikmik if you are a dev. you have to be a dev on the site to access

    trans app drawer

    credit eg1122




    Screenshot_2012-12-30-23-51-11.png


    download

    dna trans rosie
    3
    Re: transparent_app_drawer_rosie 1/10/13

    Its all good. That's to Ultra Comprare, I was able to figure out how u did it.

    Is that Boolean switch hard to port?

    Sent from my HTC6435LVW using Tapatalk 2
    What lyapota did was write his tweaks into the HTC settings apk. The switch in rosie goes in the same place you just referenced. Then it is toggled off and on in settings. He is very cool with sharing and steal25 and myself have added to it. Mostly steal though as I have been busy. I do plan on porting the whole mod to the dna though.

    Sent from my HTC6435LVW using xda premium
    2
    Turned my dock transparent but not my drawer. Gonna try switching to the stock skin as I'm on se7en right now.

    Sent from my HTC6435LVW using Tapatalk HD

    ---------- Post added at 08:34 PM ---------- Previous post was at 08:31 PM ----------



    No dice. On Codis 1.1.0

    Sent from my HTC6435LVW using Tapatalk HD

    codis is odexed i believe. forgot chingys new rom was odexed. this is for deodexed. im sure he will add it
    2
    Most HTC apps its just a matter of writing out common_app_bkg in smali and adding your own custom background. Also search for the black background color code in smali which pulls from framework if it so uses it. You search by the public id.

    Sent from my HTC6435LVW using xda premium
    2
    Landscape Mode

    Figured out landscape.

    Code:

    Look for Rosie\smali\com\htc\launcher\settings\SettingUtil.smali

    Find:

    Code:
    .method public static isSupportOrientationChange()Z
        .locals 1
    
        .prologue
        .line 407
        sget-boolean v0, Lcom/htc/launcher/settings/SettingUtil;->s_bIsSupportOrientationChange:Z
    
        return v0
    .end method

    change to:


    Code:
    .method public static isSupportOrientationChange()Z
        .locals 1
    
        const/4 v0, 0x1
    
        return v0
    .end method