Sim, parece que está a ser desenvolvido. Vamos esperar para ver no que dá.Aqui estao algums coisas que eu encontrei em relação ao ICS para Z71 , Agora havia uma pessoa a fazer ics para nos boston soque ja nao tem o Z71 e na quela altura ainda nao tinha saido os drivers para Arm 6 que agora ja ah . Sera que mesmo assim nao da para fazer ICS
http://forum.xda-dev...d.php?t=1481647 (Ice Cream Sandwich AOSP/CM9)
https://developer.qu...s-and-resources Drivers
http://cm-kang.appspot.com/z71/ics Neste site da me para entender que o Z71 tem ICS a ser desenvolvido . Mas nao sei se e verdade

[Rom 2.3.7] Ics Dream
#326
Mensagem publicada 19 June 2012 - 21:41
#327
Mensagem publicada 19 June 2012 - 21:56
Epa espero que simSim, parece que está a ser desenvolvido. Vamos esperar para ver no que dá.
Olha a tua rom ja tem o google play music apk . Se nao na messagem que eu te madei ta la.
Editado por BostonExtremist, 19 June 2012 - 21:56.
#328
Mensagem publicada 19 June 2012 - 21:58
Sim, embora não seja a mesma a mesma versão que a tua. Utilizo a tua quando lançar a V3.Epa espero que sim
Olha a tua rom ja tem o google play music apk . Se nao na messagem que eu te madei ta la.
#329
Mensagem publicada 19 June 2012 - 22:18
ok mas essa versao nao tem a opção para definir o toque nao sei porque versao stock ela traz.Deixa ve se eu encontro outroSim, embora não seja a mesma a mesma versão que a tua. Utilizo a tua quando lançar a V3.
#330
Mensagem publicada 19 June 2012 - 22:48

#331
Mensagem publicada 20 June 2012 - 03:20

#332
Mensagem publicada 20 June 2012 - 08:23
@Alpha_RG: Obrigado por esta Rom.
Já a consegui instalar, mas gostava de fazer uma pergunta. Achas que aquele update/patch que andava/anda aqui pelo forum (SD2Internal) se pode aplicar a esta tua rom sem problemas? Obrigado desde já pela resposta.
Sim, podes colocar sem qualquer problema. Eu só não uso porque estou a usar o S2E.
#333
Mensagem publicada 20 June 2012 - 11:26
#334
Mensagem publicada 20 June 2012 - 13:31

#335
Mensagem publicada 20 June 2012 - 13:35
Fica abaixo o tutorial para adicionar as softkeys do ICS a esta ROM:
The Input system in Android provides special features for implementing virtual soft keys.
There are three cases:
1. If the virtual soft keys are displayed graphically on the screen, as on the Galaxy Nexus, then they are implemented by the Navigation Bar component in the System UI package.
2. If the virtual soft keys are implemented as an extended touchable region that is part of the main touch screen, as on the Nexus One, then the input system uses a virtual key map file to translate X / Y touch coordinates into Linux key codes, then uses the key layout file to translate Linux key codes into Android key codes.
3. If the virtual soft keys are implemented as capacitive buttons that are separate from the main touch screen, as on the Nexus S, then the kernel device driver or firmware is responsible for translating touches into Linux key codes which the input system then translates into Android key codes using the key layout file.
From ICS onwards, Android supports the (1) case along with (2) and (3) case. The introduction of virtual buttons does not necessarily spell the end to hardware buttons, as such devices with buttons will simply not display the digital buttons.
This article targets for the devices which are running on Gingerbread (2.3.6) without the hardware buttons.
I Back-ported the "Virtual Soft keys / Navigation Bar from ICS (4.0.3) to Gingerbread (2.3.6) .
The animation changes of ICS have been discarded in Gingerbread and the Functionality of 'Recent Applications list ' of ICS hasn't been taken into GB.
Follow these steps to get the Virtual soft keys on Gingerbread (2.3.6).
Prerequisites :
a) AOSP Gingerbread code (2.3.6) -- Get it from here
b) AOSP ICS source code (4.0.3) -- Get it from here
Source File Changes:
All the source file changes are in '/frameworks/base'module.
Addition of source files : New source files have been added from ICS to GB.
a) NavigationBarView.java: Copy this file from ICS to GB.
ICS Location : /frameworks/base/packages/systemui/src/com/android
/systemui/statusbar/phone/
GB Location : /frameworks/base/packages/systemui/src/com/android
/systemui/statusbar/
Note : Ignore out all the animator related stuffs in this source file.
Change the package name also.
b) KeyButtonView.java: Copy this file from ICS to GB.
ICS Location : /frameworks/base/packages/systemui/src/com/android
/systemui/statusbar/policy/
GB Location : /frameworks/base/packages/systemui/src/com/android
/systemui/statusbar/
Note : Ignore out all the animator related stuffs in this source file.
Change the package name also.
Modification to source files :
a) core/java/android/view/KeyCharacterMap.java :
b) core/java/android/view/View.java
c) core/java/android/view/ViewGroup.java
d) core/java/android/view/WindowManager.java
e) include/ui/InputDispatcher.h
f) packages/SystemUI/src/com/android/systemui/statusbar/StatusBarService.java
g) policy/src/com/android/internal/policy/impl/PhoneWindowManager.java
Resource File Changes :
Addition of Resource Files : New Resource files have been added from ICS to GB
a) Copy these files from /frameworks/base/packages/SystemUI
/res/drawable-hdpi to
/frameworks/base/packages/SystemUI/res/drawable
- packages/SystemUI/res/drawable/ic_sysbar_back.png
- packages/SystemUI/res/drawable/ic_sysbar_back_land.png
- packages/SystemUI/res/drawable/ic_sysbar_highlight.png
- packages/SystemUI/res/drawable/ic_sysbar_highlight_land.png
- packages/SystemUI/res/drawable/ic_sysbar_home.png
- packages/SystemUI/res/drawable/ic_sysbar_home_land.png
- packages/SystemUI/res/drawable/ic_sysbar_lights_out_dot_large.png
- Packages/SystemUI/res/drawable/ic_sysbar_lights_out_dot_small.png
- packages/SystemUI/res/drawable/ic_sysbar_menu.png
- packages/SystemUI/res/drawable/ic_sysbar_menu_land.png
- packages/SystemUI/res/drawable/ic_sysbar_recent.png
- packages/SystemUI/res/drawable/ic_sysbar_recent_land.png
/res/layout/ to
/frameworks/base/packages/SystemUI/res/layout/
c) attrs.xml : Copy this file from /frameworks/base/packages/SystemUI/res/values/ to /frameworks/base/packages/SystemUI/res/values/
Modifications to Resource Files :
a) core/res/res/values/dimens.xml
b) packages/SystemUI/res/layout/status_bar.xml
c) packages/SystemUI/res/values/dimens.xml
d) packages/SystemUI/res/values/strings.xml
Will be updating the complete patches list of the modifications soon !!!
Happy Navigating !!
fonte: http://androidandsandu.blogspot.pt/
#336
Mensagem publicada 20 June 2012 - 13:36
#337
Mensagem publicada 20 June 2012 - 13:38
Boas alpha, parece que nesta rom a qualidade de imagem está em baixo , não sei se é o telemóvel mas esta pessima. Será que não é possivel arrranjar isso?
Será que não baixas-te nas definições para 16bit ou alteras-te alguma coisa? A qualidade de imagem na ROM está boa...
#338
Mensagem publicada 20 June 2012 - 15:45
#340
Mensagem publicada 20 June 2012 - 17:30

#341
Mensagem publicada 20 June 2012 - 17:31

#342
Mensagem publicada 20 June 2012 - 17:32
Olha quando vais a lançar a V4 com mais tweaks a nivel de perfomance e o ics lockscreen que estou desejoso de ver
?
Quando arranjar alguma coisa que de facto se veja uma diferença significativa...
#343
Mensagem publicada 20 June 2012 - 17:36
outra ideia para a tua rom era um boot animation igual ao do ICS, vê http://forum.xda-dev...d.php?t=1607415Quando arranjar alguma coisa que de facto se veja uma diferença significativa...
#344
Mensagem publicada 20 June 2012 - 19:00
Essa era a animação base que a ROM trazia mas como gostava mais desta foi a que coloquei. Posso disponibilizar a do ICS para quem quiser.Outra outra ideia para a tua rom era um boot animation igual ao do ICS, vê http://forum.xda-dev...d.php?t=1607415
#345
Mensagem publicada 20 June 2012 - 19:02
no antutu
#347
Mensagem publicada 20 June 2012 - 19:20

- Alpha_RG gosta disto
#349
Mensagem publicada 20 June 2012 - 19:38