[ROM][04-10-12][ICS|CM9] CyanogenMod 9.1.0 - 3.x Kernel - Final [Unofficial]

Search This thread

Doc76013

Senior Member
Nov 11, 2011
54
7
Fort Worth
ok i managed to configure those two quicklaunch buttons to run any arbitrary app or even activity within the app. However i currently do this from some testing-code within my application, so you would need to compile an own application and hardcode the settings there.

If enough people are interested, i can extract the code and add a quick-and-dirty ui so you could configure these buttons just the way it worked on the original rom or on cm7.


yes please !!!!!
 

EdWaRdW818

Member
Sep 11, 2008
22
3
Fullerton, CA
Ok I managed to configure those two quicklaunch buttons to run any arbitrary app or even activity within the app. However I currently do this from some testing-code within my application, so you would need to compile an own application and hardcode the settings there.

If enough people are interested, I can extract the code and add a quick-and-dirty UI so you could configure these Buttons just the way it worked on the original ROM or on CM7.

Greetings from CM10! I'd love to see this happen since it's not even in our latest build (124, 4.1.2)! But wait, couldn't we extract the APK from the stock ROM or even CM7? Never looked into it, just a thought.

Also, does this same app/code apply for the www/com button?
 
Last edited:

Battlesoft

Member
Sep 19, 2008
35
2
Greetings from CM10! I'd love to see this happen since it's not even in our latest build (124, 4.1.2)! But wait, couldn't we extract the APK from the stock ROM or even CM7? Never looked into it, just a thought.

If you manage to find it there, that would definitely be the preferred solution! However the only thing I found was the keymap that I posted above. What's missing is the corresponding settings screen, it might be some Activity derived from com.android.settings.quicklaunch.QuickLaunchSettings.
 

blk_jack

XDA Labs & Feed Dev/RD
Jun 7, 2010
3,307
11,444
Toronto
If you manage to find it there, that would definitely be the preferred solution! However the only thing I found was the keymap that I posted above. What's missing is the corresponding settings screen, it might be some Activity derived from com.android.settings.quicklaunch.QuickLaunchSettings.

FYI, this will be included in Flinny's test builds for Andromadus soon. It's actually in Andromadus for ICS (CM9) and the Settings Activity just needs to be linked.
 

jaZzyjeff818

Senior Member
Nov 6, 2010
193
25
Hey guys I can't get vibration to work for text messages. I have it checked for 'Always' under settings but still nothing..
Any ideas?

Sent from my Nexus 7 using xda app-developers app
 

Battlesoft

Member
Sep 19, 2008
35
2
Also, does this same app/code apply for the www/com button?

I don't know, in Germany we don't have that button.
If you want to try it yourself, you can use the code that I've got so far:
https://gist.github.com/4007071
You would need to change the number "117" (which is the left quicklaunch button, 118 would be the right one) to something else. You can find out the keycode using the onKeyDown-Method and pressing the button.
Also you need to change the "some.package/some.package.SomeActivity" to the actual activity you want to launch. However I don't know a way to find out this information, yet, but I'm sure that there is some simple way to enumerate all activities that are available on the device. For testing purposes, you could just decompile the .apk-file of the app you want to launch to find out the package name ...
To execute the code, just place it in the onCreate-Method of some demo app and launch it.

My code is certainly not the nicest way to change these settings, so the solution mentioned by blk_jack should be the preferred one. If that is not possible for some reason, feel free to use my code to build a separate configuration app.
 

Jinxed85

New member
May 10, 2009
3
0
Rome
Hi! I'm very happy for this release but I have a question:
I set cpu clock whit interactive governor and in range between 245 mhz and 1516 mhz and all is ok. I noticed that the battery drain by voice call. For example today I called for 30 min about and I have 40% in battery report. It's normal? Thank you and sorry for my poor english!
 

Thomileo

New member
Feb 9, 2009
3
0
Bootloop-problems

I have problems with bootloops.

I really like this rom.
Everything works fine for 3-7 days. Then all radio turn off and minutes later the phone constantly reboots.
Wiping and flashing is useless then, it still reboots so that the desktop could be seen for a second. The desktop changed its theme then.
I have to flash the original RUU (works fine) and root again (I do this according to the cyanogenmod-wiki).
It happens on two devices.
A stresstest for the cpu turned out fine.

Could ClockWorkMod be the reason?
Shall I use the t-mobile radio update, even if I don´t use t.mobile?
Why does it happen after days?
 
Last edited:

demkantor

Inactive Recognized Contributor
Nov 10, 2011
6,863
3,762
mpls
Id get rid of clockwork for 4ext regardless
But if you want your question answered accurately I suggest posting a logcat

Sent from my HTC Vision using xda premium
 

rirozizo

Senior Member
antutu benchmark at 1.5GHz performance with pimp my rom:

ahybyveb.jpg


———————————————————
i didn't mean to mock you or to offend you in any kind of way
 

Costanel

New member
Nov 27, 2008
4
0
I had the same problem with the sudden constant rebooting. Perhaps a problem with a bad installation?
I've re-rooted the Desire Z and installed CM 9.1.0. - 3.x again cleanly and noticed the last time I apparently forgot to swipe all data.
Hopefully it won't start rebooting again...

One question though: is there a way to easily disable to boot animation? It is fun the first time, but I would rather have a less flashy boot.
 

darkjuan

Senior Member
Nov 14, 2009
152
19
Columbia Heights, MN
With my wife's phone, she is unable to receive any texts, is missing all of her contacts, and constantly gets the message "process is closing" or something like that.

I've done a complete wipe on it twice already and it's still happening. Anyone know what the problem might be?

Thanks in advance. :)
 

EdWaRdW818

Member
Sep 11, 2008
22
3
Fullerton, CA
I don't know, in Germany we don't have that button.
If you want to try it yourself, you can use the code that I've got so far:
https://gist.github.com/4007071
You would need to change the number "117" (which is the left quicklaunch button, 118 would be the right one) to something else. You can find out the keycode using the onKeyDown-Method and pressing the button.
Also you need to change the "some.package/some.package.SomeActivity" to the actual activity you want to launch. However I don't know a way to find out this information, yet, but I'm sure that there is some simple way to enumerate all activities that are available on the device. For testing purposes, you could just decompile the .apk-file of the app you want to launch to find out the package name ...
To execute the code, just place it in the onCreate-Method of some demo app and launch it.

My code is certainly not the nicest way to change these settings, so the solution mentioned by blk_jack should be the preferred one. If that is not possible for some reason, feel free to use my code to build a separate configuration app.

Any experts willing to take this on? I flunked Programming in college and all my books for coding (C++, Java, HTML, etc.) are still collecting dust LOL... :eek:

Also FYI, (not trying to be Captain Obvious haha, just trying to help)... I'm seeing at least 3-4 differences between the G2 keyboard and DZ keyboard (e.g. our "www. / .com" button is "Tab", the "Sym" is replaced by a 3rd quick launch button, etc.), so I feel that may need to be taken into account when coding.
 

nvlty

Member
Feb 11, 2012
41
6
Hey,

Does this rom support scandinavian layout for the physical keyboard?

Ok after no one answered my question I decided to try it out. Scandinavian keyboard works fine. But i found a but considering the keyboard itself. I get an icon in the statusbar asking me to choose the typing method. It appears at least when trying to type in Titanium Backup's search with the physical keyboard. Nothing happens when typing and I have to close the lid to actually write there with the software keyboard. Is this a known bug or?
 

Top Liked Posts