Skip to main content

Vibration vanishes on Samsung galaxy s2 after ICS update

Some users have reported that, after they update their Samsung Galaxy S2 to ICS 4.0.3, vibration completely vanishes on the phone. I also faced the same problem. Till now, no specific reason why it happens and any update has been given by Samsung that recifies the problem. I rectified the problem using the following steps:

a. Firstly put the phone in silent mode. (Even if doesnot vibrates).
b. Switch off the phone.
c. Switch on the phone. While the operating system loads, you will notice a small vibration at the start. If this happens, the phone's vibration facility will function properly.

Normally the problem doesnot occur again. But if it occurs, repeat the same steps again. Why it happens, there is no logical reason to explain, but in my case it worked. Please try this method if you face this same problem and share your experience.

Comments

Unknown said…
Dont tell me sir , you are using STOCK ROM on your dual core S2,
Find some custom ROMs on XDA-DEVELOPERS.COM

You will get 4.0.4 with whole lot of tweaks, You can even try AOKP which is one of the best

And Finally My Team ROM ..
Its called PARANOIDANDROID..
You will be able to use tablet/ phone mode at the same time..It feature PAL , PAD For the first time in Android History

More Details : http://betadan.com/paranoid

Official XDA -Thread For S2 : http://forum.xda-developers.com/showthread.php?p=26264894

My Website : www.blindndumb.com

I am Rakesh aka blindndumb
A student of LPU, B.Tech CSE 3rdYear (waiting for results to move to 4th year ;), Currently struggling to make v3 kernel for android )

Cheers :)
Unknown said…
This is the correct xda link for galaxy sII

http://forum.xda-developers.com/showthread.php?t=1580070
Rohit said…
Rakesh,

Tried every custom rom on the samsung galaxy s2. Custom rom's etc. But the vibration didn't work. That's I posted the solution.
Burhan said…
Thanks a lot for the solution...It worked for me as well
madhav_c said…
No sir this doesnt work for me
Geeky2Core said…
Thanks alot :)
It worked for me but while restarting there was no vibration.
Gelásio said…
not working for me
Unknown said…
For me work.When no vibration,turn phone on silent mode,restart and then work:)
Thanks

Popular posts from this blog

How to use QueryExtenderControl in ASP.NET with LINQ

Queryextender control is a control that helps in doing actions like filtration, searching, sorting etc. on the LINQ Data source with few steps. In fact we don’t have to write any code with this. Screenshot given below is just an example that can easily be achieved through this control. In the above screenshot, we can see that there is a GridView Control that has been binded to a LINQData Source Control. And we have a DropDownlistBox that is also binded to another LINQData Source Control and displaying only grouped jobs. The GridView display all the employees who are matching the Job Parameter. This is done through QueryExtender Control. Also we can search for any name in the employee name's through Query Extender control. The code in the HTML goes like: < form id ="form1" runat ="server">     < div >         Select Job: < asp : DropDownList ID ="Job" runat ="server" DataSourceID ="LinqDataSource2...

Using GUID or UniqueIdentifiers in SQL Server

In order to differentiate between two rows, we normally use primary keys or identity values which may be same across two tables. In order to overcome this problem we can use a special type named "GUID" . Its a hexadecimal number (Base 16) and the advantage is  that they are unique across all databases and tables.  In SQL Server the same concept is implemented through UNIQUEIDENTIFIER  data type. In order to generate a new value, we use the NEWID() function. For e.g.  a. Creating a table that uses the UNIQUEIDENTIFIER datatype Create table Test ( Empno uniqueidentifier, Ename varchar(20) ) b. Inserting rows in the tables with the use of NEWID() function insert into Test values (newId(),'ABC') insert into Test values (newid(),'XYZ') insert into test values (newid(),'MNO') c. Selecting the rows from the table. Select * from test  Empno                             ...

How to Delete Record through Knex.

This post is all about of deleting records through KNEX ORM in Nodejs. The following code shows how to achieve this: knex("depts").where("deptno","50").del() .then(function (count) {     console.log(count); }) .finally(function () {     knex.destroy(); }); The above code deletes a record from a table "Depts" where Deptno = 50. It has a "then" Promise attached that will show how many records were deleted with this command. Also "finally" is the method that will always execute and will close the KNEX connection. Happy Coding !!!