-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathand.html
94 lines (84 loc) · 4.88 KB
/
and.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home | Andy Blog</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id="header">
<a href="index.html">
<img src="images/banner.png">
</a>
</div>
<div id="top_content" >
<ul>
<li><a href="index.html" > Home </a></li>
<li><a href="howto.html"> How to? </a></li>
<li><a href="tips.html"> Tips </a></li>
<li> <a href="about.html">About</a></li>
</ul>
</div>
<div id="content">
<div id="article_plate">
<div id="headline">
5 Android battery life tips and tricks
</div>
<div id="article">
Batteries are growing bigger with every passing year, but we're not seeing a huge benefit because our Android devices are demanding more and more out of them. Battery life still tops the complaint charts for smartphone owners tired of the daily charging routine.
<br><br>
Most Android device manufacturers have added some form of power-saving mode. You can automatically hobble your phone's features or shut down specific apps when your battery dwindles below a predetermined level.
<br><br><br>
<span id="article_point">1. Use power saving mode</span>
The first Android smartphone, the HTC Dream, had a 1,150mAh battery, but it also had a 3.2-inch display. The Samsung Galaxy S5 has a 2,800mAh battery and a 5.1-inch display. Average battery capacities have been climbing steadily since 2008, but screen sizes have been keeping pace.
<br><br><br>
<span id="article_point">2. Hibernate or freeze apps</span>
You may also consider installing Greenify to get a good look at what is running and automatically hibernate apps that you aren't using, so they aren't eating system resources unless you start them up.
<br><br>
You'll need to root your device to really take full advantage, which is simple enough but will take a little time to manage if you're new to the process. If you do decide to root then you may also consider Titanium Backup Pro for freezing unwanted apps.
<br><br><br>
<span id="article_point">3. Streamline your home screen</span>
The busier your home screen, the more battery life it's going to suck. Get rid of widgets that you don't need, and consider reducing refresh rates. Animation costs power, so ditch the live wallpapers.
<br><br>
If you have a phone with an AMOLED display (such as nearly all of the high end Samsungs or the new Moto X), then use a dark background for the home screen and a dark theme in general. The technology achieves deep blacks by not lighting up those pixels and so dark backgrounds can save you some power.
<br><br>
You'll need to root your device to really take full advantage, which is simple enough but will take a little time to manage if you're new to the process. If you do decide to root then you may also consider Titanium Backup Pro for freezing unwanted apps.
<br><br><br>
<span id="article_point">4. Turn off notifications</span>
Do you need to know every time someone likes a post or comments on something you've engaged with on Facebook? Do you want to hear about the latest special offer or new app in your notification shade?
<br><br>
When you install any app, it automatically gains the right to fire notifications at you, but you can stop it in Settings > Apps by tapping on the app and clearing the 'Show notifications' box.
<br><br><br>
<span id="article_point">5. Reduce or stop auto-syncing</span>
Do you need to check for emails every five minutes? Reduce the frequency of your syncing and use push settings for email wherever possible.
<br><br>
<img src="images/notification.jpg">
<br><br><br>
</div>
</div>
</div>
<div id="footer">
<div id="how_to">
<span id="footer_title">Popular Posts</span>
<ul>
<a href="factoryreset.html" target="_blank"><li>How to do a factory reset on an Android?</li></a>
<a href="notification.html" target="_blank"><li>How to block annoying Ads in the notification bar?</li></a>
<a href="boot.html" target="_blank"><li>How to boot into recovery mode.</li></a>
<a href="typefaster.html" target="_blank"><li>How to type faster in Android?</li></a>
<a href="roms.html" target="_blank"><li>How to add custom ROM in Android?</li></a>
</ul>
</div>
<div id="contact">
<span id="footer_title">Redesigned proudly by</span>
<ul>
<li><a href="http://facebook.com/shrestha.umang.9" target="_blank">Facebook</a></li>
<li><a href="https://github.com/umangsthav2" target="_blank">Github</a></li>
<li><a href="https://www.instagram.com/umang_stha_v2.0/" target="_blank">Instagram</a></li>
<li><a href="https://behance.net/umangsthav2" target="_blank">Behance</a></li>
<li><a href="https://umangsthav2.github.io/US_Photography_Portfolio/" target="_blank">Photography</a></li>
</ul>
</div>
</div>
</body>
</html>