summaryrefslogtreecommitdiffstats
path: root/docs/html/guide/practices/ui_guidelines/icon_design.jd
blob: 5f0a278bed92d509765a8e0b7b81d78da607ae5f (plain)
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
page.title=Icon Design Guidelines
@jd:body

<div id="qv-wrapper">
<div id="qv">

<h2>Icon design quickview</h2>

<ul>
<li>You can use several types of icons in an Android application.</li>
<li>Your icons should follow the specification in this document.</li>
<li>A set of standard icons is provided by the Android platform. Your
application can use the standard icons by referencing them as resources.</li>
</ul>

<h2>In this document</h2>

<ol>
<li><a href="#launcherstructure">Launcher icon</a></li>
<li><a href="#menustructure">Menu icon</a></li>
<li><a href="#statusbarstructure">Status bar icon</a></li>
<li><a href="#tabstructure">Tab icon</a></li>
<li><a href="#dialogstructure">Dialog icon</a></li>
<li><a href="#listviewstructure">List view icon</a></li>

<li style="margin-top:4px;"><a href="#dodonts">General guidelines</a></li>
<li><a href="#templatespack">Using the Icon Templates Pack</a></li>
<li><a href="#iconappendix">Icon appendix</a>
	<ol>
	<li><a href="#launcherapx">Launcher icons</a></li>
	<li><a href="#menuapx">Menu icons</a></li>
	<li><a href="#statusbarapx">Status bar icons</a></li>
	</ol>
</li>

</ol>

<h2>See also</h2>

<ol>
<li><a href="{@docRoot}shareables/icon_templates-v1.0.zip">Android Icon
Templates Pack &raquo;</a></li>
</ol>

</div>
</div>

<p>Creating a unified look and feel throughout a user interface adds value to
your product. Streamlining the graphic style will also make the UI seem more
professional to the user.</p>

<p>This document shows you how to create icons for various parts
of your application’s user interface that fit the style set by the Android UI
team. Following these guidelines will help you to create a polished and unified
experience for the user.</p>

<p>To get started creating conforming icons more quickly, you can download 
the Android Icon Templates Pack. For more information, see 
<a href="#templatespack">Using the Android Icon Template Pack</a>.</p>

<h2 id="launcherstructure">Launcher icon</h2>

<p>A launcher icon is the graphic that represents your application on an Android
device’s Home screen. It is a simplified 3D icon with a fixed perspective. The
required perspective is shown in Figure 1.</p>

<h4 id="launcherstructure">Structure</h4>

<ul>
<li>The base of a launcher icon can face either the top view or the front
view.</li>

<li>The majority of a launcher icon’s surface should be created using the
launcher icon <a href="#launcherpalette">color palette</a>. To add emphasis, use
one or more bright accent colors to highlight specific characteristics.</li>

<li>All launcher icons must be created with rounded corners to make them look
friendly and simple—as shown in Figure 2.</li>

<li>All dimensions specified are based on a 250x250 pixel artboard size
in a vector graphics editor like Adobe Illustrator, where the icon fits within
the artboard boundaries.</li>

<li><strong>Final art must be scaled down and exported as a transparent 48x48 px
PNG file using a raster image editor such as Adobe Photoshop.</strong></li>

<li>Templates for creating launcher icons in Adobe Illustrator and Photoshop are
available in the Icon Templates Pack.</li>
</ul>

<table class="image-caption">
<tr>
<td class="image-caption-i" style="padding-right:0">
  <img src="{@docRoot}images/icon_design/launcher_structure.png" alt="A view of
launcher icon corners and perspective angles" />
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 1.</strong> Perspective angles for launcher icons (90° is
vertical).</p>
    <div class="image-caption-nested">
      <table style="margin-top:0;">
      <tr><td style="padding-right:1em"><em>1.</em></td><td>92°</td></tr>
      <tr><td><em>2.</em></td><td>92°</td></tr>
      <tr><td><em>3.</em></td><td>173°</td></tr>
      <tr><td><em>4.</em></td><td>171°</td></tr>
      <tr><td><em>5.</em></td><td>49°</td></tr>
      <tr><td><em>6.</em></td><td>171°</td></tr>
      <tr><td><em>7.</em></td><td>64°</td></tr>
      <tr><td><em>8.</em></td><td>97°</td></tr>
      <tr><td><em>9.</em></td><td>75°</td></tr>
      <tr><td><em>10.</em></td><td>93°</td></tr>
      <tr><td><em>11.</em></td><td>169°</td></tr>
      </table>
    </div>
  </div>
  <div class="caption grad-rule-top">
    <p><strong>Figure 2.</strong> Rounded corners for launcher icons.</p>
  </div>
</td>
</tr>
</table>

<h4 id="launcherlight">Light, effects, and shadows</h4>

<p>Launcher icons are simplified 3D icons using light and shadows for
definition. A light source is placed slightly to the left in front of the icon,
and therefore the shadow expands to the right and back.</p>

<table class="image-caption">
<tr>
<td class="image-caption-i">
  <img src="{@docRoot}images/icon_design/launcher_light.png" alt="A view of
light, effects, and shadows for launcher icons."/>
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 3. </strong>Light, effects, and shadows for launcher icons.</p>
    <div class="image-caption-nested">
    <table style="margin-top:0;">
    <tr><td style="padding-right:1em"><em>1.</em></td><td>Edge highlight:</td><td>white</td></tr>
    <tr><td><em>2.</em></td><td>Icon shadow:</td><td>black | 20px blur<br>50% opacity | angle 67°</td></tr>
    <tr><td><em>3.</em></td><td>Front part:</td><td>Use light gradient from color palette</td></tr>
    <tr><td><em>4.</em></td><td>Detail shadow:</td><td>black | 10px blur<br>75% opacity</td></tr>
    <tr><td><em>5.</em></td><td> Side part:</td><td>Use medium gradient from color palette</td></tr>
    </table>
    </div>
  </div>
</td>
</tr>
</table>

<table style="margin:0px;padding:0px;">
<tr>
<td style="border:0;width:350px;">

<h4 id="launcherpalette">Launcher icon color palette</h4>

<table style="margin:0px;padding:0px;">
<tr>
<td class="image-caption-i"><img src="{@docRoot}images/icon_design/launcher_palette_white.png" alt="Color palette, white" style="margin:.5em 0 0 0;" /></td>
<td class="image-caption-c" style="padding-top:.5em;">White<br>r 0 | g 0 | b 0<br>Used for highlights on edges.</td>
</tr>

<tr>
<td class="image-caption-i"><img src="{@docRoot}images/icon_design/launcher_palette_gradient_light.png" alt="Color palette, light gradient" style="margin:.5em 0 0 0;" /></td>
<td class="image-caption-c" style="padding-top:.5em;">Light gradient<br><em>1:&nbsp;&nbsp;</em>r 0  | g 0  | b 0<br><em>2:&nbsp;&nbsp;</em>r 217 | g 217 | b 217<br>Used on the front (lit) part of the icon.</td>
</tr>

<tr>
<td class="image-caption-i"><img src="{@docRoot}images/icon_design/launcher_palette_gradient_medium.png" alt="Color palette, medium gradien" style="margin:.5em 0 0 0;" /></td>
<td class="image-caption-c" style="padding-top:.5em;">Medium gradient<br><em>1:&nbsp;&nbsp;</em>r 190 | g 190 | b 190<br><em>2:&nbsp;&nbsp;</em>r 115 | g 115 | b 115<br>Used on the side (shaded) part of the icon.</td>
</tr>

<tr>
<td class="image-caption-i"><img src="{@docRoot}images/icon_design/launcher_palette_gradient_dark.png" alt="Color palette, dark gradient" style="margin:.5em 0 0 0;" /></td>
<td class="image-caption-c" style="padding-top:.5em;">Dark gradient<br><em>1:&nbsp;&nbsp;</em>r 100 | g 100 | b 100<br><em>2:&nbsp;&nbsp;</em>r 25  | g 25  | b 25<br>Used on details and parts in the shade of the icon.</td>
</tr>

<tr>
<td class="image-caption-i"><img src="{@docRoot}images/icon_design/launcher_palette_black.png" alt="Color palette, black" style="margin:.5em 0 0 0;" /></td>
<td class="image-caption-c" style="padding-top:.5em;">Black<br>r 255 | g 255 | b 255<br>Used as base color in shadows.</td>
</tr>

</table>

</td>

<td style="border:0;width:350px">

<h4 id="launchersteps">Step by step</h4>

<ol>
  <li>Create the basic shapes with a tool like Adobe Illustrator, using the
angles described in <a href="#launcherstructure">Launcher icon: structure</a>.
The shapes and effects must fit within a 250x250 pixel artboard.</li>
  <li>Add depth to shapes by extruding them and create the rounded corners as
described for the launcher icon structure.</li>
  <li>Add details and colors. Gradients should be treated as if there is a light
source placed slightly to the left in front of the icon.</li>
  <li>Create the shadows with the correct angle and blur effect.</li>
  <li>Import the icon into a tool like Adobe Photoshop and scale to fit an image
size of 48x48 px on a transparent background.</li>
  <li>Export the icon at 48x48 as a PNG file with transparency enabled.</li>
</ol>

</td>
</tr>
</table>

<h2 id="menustructure">Menu icon</h2>

<p>Menu icons are graphical elements placed in the pop-up menu shown to users
when they press the Menu button. They are drawn in a flat-front perspective.
Elements in a menu icon must not be visualized in 3D or perspective.</p>

<h4>Structure</h4>

<ul>
<li>In order to maintain consistency, all menu icons must use the same
primary palette and the same effects. For more information, see the
menu icon <a href="#menupalette">color palette</a>. </li>

<li>Menu icons should include rounded corners, but only when logically
appropriate. For example, in Figure 3 the logical place for rounded corners is
the roof and not the rest of the building.</span></li>

<li>All dimensions specified on this page are based on a 48x48 pixel artboard 
size with a 6 pixel safeframe.</li>

<li>The menu icon effect (the outer glow) described in <a
href="#menulight">Light, effects, and shadows</a> can overlap the 6px safeframe,
but only when necessary. The base shape must always stay inside the
safeframe.</li>

<li><strong>Final art must be exported as a transparent PNG file.</strong></li>

<li>Templates for creating menu icons in Adobe Photoshop are available in the 
Icon Templates Pack.</li>
</ul>

<table class="image-caption">
<tr>
<td class="image-caption-i" style="padding-right:0">
  <img src="{@docRoot}images/icon_design/menu_structure.png" alt="A view of menu
icon structure." />
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 4. </strong>Safeframe and corner-rounding for menu
icons. Icon size is 48x48.</p>
  </div>
</td>
</tr>
</table>


<h4 id="menulight">Light, effects, and shadows</h4>

<p>Menu icons are flat and pictured face on. A slight deboss and some other
effects, which are shown below, are used to create depth.</p>

<table class="image-caption">
<tr>
<td class="image-caption-i">
  <img src="{@docRoot}images/icon_design/menu_light.png" alt="A view of light, effects, and shadows for launcher icons."/>
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 5. </strong>Light, effects, and shadows for launcher icons.</p>
    <div class="image-caption-nested">
    <table style="margin-top:0;">
    <tr><td style="padding-right:1em"><em>1.</em></td><td>Front part:</td><td>Use fill gradient from primary color palette</td></tr>
    <tr><td><em>2.</em></td><td>Inner shadow:</td><td>black | 20 % opacity<br>angle 90° | distance 2px<br>size 2px</td></tr>
    <tr><td><em>3.</em></td><td>Outer glow:</td><td>white | 55% opacity <br>spread 10% | size 3px</td></tr>
    <tr><td><em>5.</em></td><td>Inner bevel:</td><td>depth 1% | direction down size 0px<br>angle 90° | altitude 10°<br>highlight white 70% opacity<br>shadow black 25% opacity</td></tr>
    </table>
    </div>
  </div>
</td>
</tr>
</table>

<table style="margin:0px;padding:0px;">
<tr>
<td style="border:0;width:350px;">

<h4 id="menupalette">Color palette</h4>

<table style="margin:0px;padding:0px;">
<tr>
<td class="image-caption-i"><img src="{@docRoot}images/icon_design/menu_palette_white.png" alt="Color palette, white" style="margin:.5em 0 0 0;" /></td>
<td class="image-caption-c" style="padding-top:.5em;">White<br>r 0 | g 0 | b 0<br>Used for outer glow and bevel highlight.</td>
</tr>

<tr>
<td class="image-caption-i"><img src="{@docRoot}images/icon_design/menu_palette_gradient_medium.png" alt="Color palette, medium gradient" style="margin:.5em 0 0 0;" /></td>
<td class="image-caption-c" style="padding-top:.5em;">Fill gradient<br><em>1:&nbsp;&nbsp;</em>r 163 | g 163 | b 163<br><em>2:&nbsp;&nbsp;</em>r 120 | g 120 | b 120<br>Used as color fill.</td>
</tr>

<tr>
<td class="image-caption-i"><img src="{@docRoot}images/icon_design/menu_palette_black.png" alt="Color palette, black" style="margin:.5em 0 0 0;" /></td>
<td class="image-caption-c" style="padding-top:.5em;">Black<br>r 255 | g 255 | b 255<br>Used for inner shadow and bevel shadow.</td>
</tr>

</table>

</td>

<td style="border:0;width:350px">

<h4 id="menusteps">Step by step</h4>

<ol>
<li>Create the basic shapes using a tool like Adobe Illustrator.</li>
<li>Import the shape into a tool like Adobe Photoshop and scale to fit an image
of 48x48 px on a transparent background. Mind the safeframe.</li>
<li>Add the effects seen as described in Figure 5.</li>
<li>Export the icon at 48x48 as a PNG file with transparency enabled.</li>
</ol>

</td>
</tr>
</table>


<h2 id="statusbarstructure">Status bar icon</h2>

<p>Status bar icons are used to represent notifications from your application in
the status bar. Graphically, they are very similar to menu icons, but are
smaller and higher in contrast.</p>

<h4>Structure</h4>

<ul>
<li>Rounded corners must always be applied to the base shape and to the details
of a status bar icon shown Figure 7.</li>

<li>All dimensions specified are based on a 25x25 pixel artboard size with a 2
pixel safeframe.</li>

<li>Status bar icons can overlap the safeframe to the left and right when
necessary, but must not overlap the safeframe at the top and bottom.</li>

<li><strong>Final art must be exported as a transparent PNG file.</strong></li>

<li>Templates for creating status bar icons using Adobe Photoshop are available
in the Icon Templates Pack.</li>
</ul>

<table class="image-caption">
<tr>
<td class="image-caption-i" style="padding-right:0">
  <img src="{@docRoot}images/icon_design/statusbar_structure.png" alt="A view of
status bar icon structure." />
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 6. </strong>Safeframe and corner-rounding for status bar
icons. Icon size is 25x25.</p>
  </div>
</td>
</tr>
</table>


<h4 id="statusbarlight">Light, effects, and shadows</h4>

<p>Status bar icons are slightly debossed, high in contrast, and pictured
face-on to enhance clarity at small sizes.</p>

<table class="image-caption">
<tr>
<td class="image-caption-i">
  <img src="{@docRoot}images/icon_design/statusbar_light.png" alt="A view of
light, effects, and shadows for launcher icons."/>
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 7. </strong>Light, effects, and shadows for launcher icons.</p>
    <div class="image-caption-nested">
    <table style="margin-top:0;">
    <tr><td style="padding-right:1em"><em>1.</em></td><td>Front part:</td><td>Use fill gradient from primary color palette</td></tr>
    <tr><td><em>2.</em></td><td>Inner bevel:</td><td>depth 100% | direction down<br>size 0px | angle 90° |<br>altitude 30°<br>highlight white 75% opacity<br>shadow black 75% opacity</td></tr>
    <tr><td><em>3.</em></td><td>Detail:</td><td>white</td></tr>
    <tr><td><em>4.</em></td><td>Disabled detail:</td><td>grey gradient from palette<br>+ inner bevel: smooth | depth 1% | direction down | size 0px | angle 117° | <br>altitude 42° | highlight white 70% | no shadow</td></tr>
    </table>
    </div>
  </div>
</td>
</tr>
</table>

<table style="margin:0px;padding:0px;">
<tr>
<td style="border:0;width:350px;">

<h4 id="menupalette">Color palette</h4>

<p>Only status bar icons related to the phone function use full color; all other status bar icons should remain monochromatic.</p>

<table style="margin:0px;padding:0px;">
<tr>
<td class="image-caption-i"><img src="{@docRoot}images/icon_design/statusbar_palette_white.png" alt="Color palette, white" style="margin:.5em 0 0 0;" /></td>
<td class="image-caption-c" style="padding-top:.5em;">White<br>r 0 | g 0 | b 0<br>Used for details within the icons and bevel highlight.</td>
</tr>

<tr>
<td class="image-caption-i"><img src="{@docRoot}images/icon_design/statusbar_palette_fill.png" alt="Color palette, grey gradient" style="margin:.5em 0 0 0;" /></td>
<td class="image-caption-c" style="padding-top:.5em;">Grey gradient<br><em>1:&nbsp;&nbsp;</em>r 169 | g 169 | b 169<br><em>2:&nbsp;&nbsp;</em>r 126 | g 126 | b 126<br>Used for disabled details within the icon.</td>
</tr>

<tr>
<td class="image-caption-i"><img src="{@docRoot}images/icon_design/statusbar_palette_grey.png" alt="Color palette, fill gradient" style="margin:.5em 0 0 0;" /></td>
<td class="image-caption-c" style="padding-top:.5em;">Fill gradient<br><em>1:&nbsp;&nbsp;</em>1 r 105 | g 105 | b 105<br><em>2:&nbsp;&nbsp;</em>r 10   | g 10   | b 10<br>Used as color fill.</td>
</tr>

<tr>
<td class="image-caption-i"><img src="{@docRoot}images/icon_design/statusbar_palette_black.png" alt="Color palette, black" style="margin:.5em 0 0 0;" /></td>
<td class="image-caption-c" style="padding-top:.5em;">Black<br>r 255 | g 255 | b 255<br>Used for bevel shadow.</td>
</tr>

</table>

</td>

<td style="border:0;width:350px">

<h4 id="menusteps">Step by step</h4>

<ol>
<li>In a tool like Adobe Photoshop, create the base shape within a 25x25 px
image on a transparent background. Mind the safeframe, and keep the upper and
lower 2 pixels free.</li>
<li>Add rounded corners as specified in Figure 6.</li>
<li>Add light, effects, and shadows as specified in Figure 7.</li>
<li>Export the icon at 25x25 as a PNG file with transparency enabled.</li>
</ol>

</td>
</tr>
</table>


<h2 id="tabstructure">Tab icon</h2>

<p>Tab icons are graphical elements used to represent individual tabs in a
multi-tab interface. Each tab icon has two states: unselected and selected.</p>

<h4>Structure</h4>

<ul>
<li>Unselected tab icons have the same fill gradient and effects as menu icons,
but with no outer glow.</li>

<li>Selected tab icons look just like unselected tab icons, but with a fainter
inner shadow, and have the same front part gradient as dialog icons.</li>

<li>Tab icons have a 1 px safeframe which should only be overlapped for the edge
of the anti-alias of a round shape.</li>

<li>All dimensions specified on this page are based on a 32x32 px artboard size.
Keep 1 px of padding around the bounding box inside the Photoshop template.</li>

<li><strong>Final art must be exported as a 32x32 px transparent PNG
file.</strong></li>

<li>Templates for creating tab icons in Adobe Photoshop are available in the
Icon Templates Pack.</li>
</ul>

<table class="image-caption">
<tr>
<td class="image-caption-i" style="padding-right:0">
  <img src="{@docRoot}images/icon_design/tab_icon_unselected.png" alt="A view of
unselected tab icon structure." />
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 8. </strong>Safeframe and fill gradient for unselected tab
icons. Icon size is 32x32.</p>
  </div>
</td>
</tr>
<tr>
<td class="image-caption-i" style="padding-right:0">
  <img src="{@docRoot}images/icon_design/tab_icon_selected.png" alt="A view of
selected tab icon structure." />
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 9. </strong>Safeframe and fill gradient for tab icons in
selected state. Icon size is 32x32.</p>
  </div>
</td>
</tr>
</table>

<h3 id="unselectedtabdetails">Unselected tab icon</h3>

<h4 id="unselectedtablight">Light, effects, and shadows</h4>

<p>Unselected tab icons look just like the selected tab icons, but with a
fainter inner shadow, and the same front part gradient as the dialog icons.</p>

<table class="image-caption">
<tr>
<td class="image-caption-i">
  <img src="{@docRoot}images/icon_design/tab_unselected_light.png" alt="A view
of light, effects, and shadows for unselected tab icons."/>
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 10. </strong>Light, effects, and shadows for unselected
tab icons.</p>
    <div class="image-caption-nested">
    <table style="margin-top:0;">
    <tr><td style="padding-right:1em"><em>1.</em></td><td>Front part:</td><td>gradient overlay | angle 90°<br>bottom color: r 223 | g 223 | b 223<br>top color: r 249 | g 249 | b 249<br>bottom color location: 0%<br>top color location: 75%</td></tr>
    <tr><td><em>2.</em></td><td>Inner shadow:</td><td>black | 10 % opacity | angle 90° distance 2px | size 2px</td></tr>
    <tr><td><em>3.</em></td><td>Inner bevel:</td><td>depth 1% | direction down | size 0px | angle 90° | altitude 10°<br>highlight white 70% opacity<br>shadow black 25% opacity</td></tr>
    </table>
    </div>
  </div>
</td>
</tr>
</table>


<table style="margin:0px;padding:0px;">
<tr>
<td style="border:0;width:350px;">

<h4 id="menusteps">Step by step</h4>

<ol>
<li>Create the basic shapes using a tool like Adobe Illustrator.</li>
<li>Import the shape to a tool like Adobe Photoshop and scale to fit an image of
32x32 px on a transparent background.</li>
<li>Add the effects seen in Figure 10 for the unselected state filter.</li>
<li>Export the icon at 32x32 as a PNG file with transparency enabled.</li>
</ol>

</td>
</tr>
</table>

<h3 id="selectedtabdetails">Selected tab icon</h3>

<p>The selected tab icons have the same fill gradient and effects as the menu
icon, but with no outer glow.</p>

<table class="image-caption">
<tr>
<td class="image-caption-i">
  <img src="{@docRoot}images/icon_design/tab_selected_light.png" alt="A view of
light, effects, and shadows for selected tab icons."/>
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 11. </strong>Light, effects, and shadows for selected tab
icons.</p>
    <div class="image-caption-nested">
    <table style="margin-top:0;">
    <tr><td style="padding-right:1em"><em>1.</em></td><td>Front part:</td><td>Use fill gradient from color palette.</td></tr>
    <tr><td><em>2.</em></td><td>Inner shadow:</td><td>black | 20% opacity | <br>angle 90° | distance 2px | <br>size 2px</td></tr>
    <tr><td><em>3.</em></td><td>Inner bevel:</td><td>depth 1% | direction down | size 0px | angle 90° | <br>altitude 10°<br>highlight white 70% opacity<br>shadow black 25% opacity</td></tr>
    </table>
    </div>
  </div>
</td>
</tr>
</table>

<table style="margin:0px;padding:0px;">
<tr>
<td style="border:0;width:350px;">

<h4 id="menupalette">Color palette</h4>

<table style="margin:0px;padding:0px;">
<tr>
<td class="image-caption-i"><img src="{@docRoot}images/icon_design/menu_palette_gradient_medium.png" alt="Color palette, fill gradient" style="margin:.5em 0 0 0;" /></td>
<td class="image-caption-c" style="padding-top:.5em;">Fill gradient<br><em>1:&nbsp;&nbsp;</em>r 163 | g 163 | b 163<br><em>2:&nbsp;&nbsp;</em>r 120 | g 120 | b 120<br>Used as color fill on unselected tab icons.</td>
</tr>

</table>

</td>

<td style="border:0;width:350px">

<h4 id="menusteps">Step by step</h4>

<ol>
<li>Create the basic shape using a tool like Adobe Illustrator.</li>
<li>Import the shape into a tool like Adobe Photoshop and scale to fit a 32x32
px artboard with a transparent background. </li>
<li>Add the effects seen in Figure 11 for the selected state filter.</li>
<li>Export the icon at 32x32 as a PNG file with transparency enabled.</li>
</ol>

</td>
</tr>
</table>


<h2 id="dialogstructure">Dialog icon</h2>

<p>Dialog icons are shown in pop-up dialog boxes that prompt the user for
interaction. They use a light gradient and inner
shadow in order to stand out against a dark background.</p>

<h4>Structure</h4>

<ul>
<li>Dialog icons have a 1 pixel safeframe. The base shape must fit within the
safeframe, but the anti-alias of a round shape can overlap the safeframe. <span
class="body-copy"></li>

<li>All dimensions specified on this page are based on a 32x32 pixel artboard size
in Adobe Photoshop. Keep 1 pixel of padding around the bounding box inside the
Photoshop template.</li>

<li><strong>Final art must be exported as a transparent PNG file.</strong></li>

<li>Templates for creating dialog icons in Adobe Photoshop are available in the
Icon Templates Pack.</li>
</ul>

<table class="image-caption">
<tr>
<td class="image-caption-i" style="padding-right:0">
  <img src="{@docRoot}images/icon_design/dialog_icon.png" alt="A view of dialog
icon structure." />
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 12. </strong>Safeframe and fill gradient for dialog icons.
Icon size is 32x32.</p>
  </div>
</td>
</tr>
</table>


<h4 id="dialoglight">Light, effects, and shadows</h4>

<p>Dialog icons are flat and pictured face-on. In order to stand out against a
dark background, they are built up using a light gradient and inner shadow.</p>

<table class="image-caption">
<tr>
<td class="image-caption-i">
  <img src="{@docRoot}images/icon_design/dialog_light.png" alt="A view of light,
effects, and shadows for dialog icons."/>
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 13. </strong>Light, effects, and shadows for dialog
icons.</p>
    <div class="image-caption-nested">
    <table style="margin-top:0;">
    <tr><td style="padding-right:1em"><em>1.</em></td><td>Front part:</td><td>gradient overlay | angle 90°<br>bottom: r 223 | g 223 | b 223<br>top: r 249 | g 249 | b 249<br>bottom color location: 0%<br>top color location: 75%</td></tr>
    <tr><td><em>2.</em></td><td>Inner shadow:</td><td>black | 25% opacity | <br>angle -90° | distance 1px | size 0px</td></tr>
    </table>
    </div>
  </div>
</td>
</tr>
</table>


<table style="margin:0px;padding:0px;">
<tr>
<td style="border:0;width:350px;">

<h4 id="menusteps">Step by step</h4>

<ol>
<li>Create the basic shapes using a tool like Adobe Illustrator.</li>
<li>Import the shape into a tool like Adobe Photoshop and scale to fit an image
of 32x32 px on a transparent background. </li>
<li>Add the effects seen in Figure 13 for the proper filter.</li>
<li>Export the icon at 32x32 as a PNG file with transparency enabled.</li>
</ol>

</td>
</tr>
</table>


<h2 id="listviewstructure">List view icon</h2>

<p>List view icons look a lot like dialog icons, but they use an inner shadow
effect where the light source is above the object. They are also designed to be
used only in a list view. Examples include the Android Market application home
screen and the driving directions screen in the Maps application.</p>

<h4>Structure</h4>

<ul>
<li>A list view icon normally has a 1 px safeframe, but it is OK to use the
safeframe area for the edge of the anti-alias of a round shape. </li>

<li>All dimensions specified are based on a 32x32 pixel artboard size in
Photoshop. Keep 1 pixel of padding around the bounding box inside the template.
 </li>

<li><strong>Final art must be exported as a transparent PNG file.</strong></li>

<li>Templates for creating list view icons in Adobe Photoshop are available in
the Icon Templates Pack. </li>
</ul>

<table class="image-caption">
<tr>
<td class="image-caption-i" style="padding-right:0">
  <img src="{@docRoot}images/icon_design/listview_icon.png" alt="A view of list
view icon structure." />
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 14. </strong>Safeframe and fill gradient for list view
icons. Icon size is 32x32.</p>
  </div>
</td>
</tr>
</table>

<h4 id="listviewlight">Light, effects, and shadows</h4>

<p>List view icons are flat and pictured face-on with an inner shadow. Built up
by a light gradient and inner shadow, they stand out well on a dark
background.</p>

<table class="image-caption">
<tr>
<td class="image-caption-i">
  <img src="{@docRoot}images/icon_design/listview_icon_details.png" alt="A view
of light, effects, and shadows for list view icons."/>
</td>
<td class="image-caption-c">
  <div class="caption grad-rule-top">
    <p><strong>Figure 15. </strong>Light, effects, and shadows for list view
icons.</p>
    <div class="image-caption-nested">
    <table style="margin-top:0;">
    <tr><td style="padding-right:1em"><em>1.</em></td><td>Inner shadow:</td><td>black | 57 % opacity | angle 120° | blend mode normal | distance 1px | size 1px <td></tr>
    <tr><td><em>2.</em></td><td>Background:</td><td>black | standard system color <br>These icons are displayed in list views only.</td></tr>
    <tr><td colspan="2">Note: The list view icon sits on 32x32 px artboard in Photoshop, without a safeframe.</td></tr>
    </table>
    </div>
  </div>
</td>
</tr>
</table>

<table style="margin:0px;padding:0px;">
<tr>
<td style="border:0;width:350px;">

<h4 id="menusteps">Step by step</h4>

<ol>
<li>Add the effects seen in Figure 15 for the proper filter.</li>
<li>Export the icon at 32x32 as a PNG file with transparency enabled.</li>
<li>Create the basic shapes using a tool like Adobe Illustrator.</li>
<li>Import the shape into a tool like Adobe Photoshop and scale to fit an image
of 32x32 px on a transparent background. </li>
</ol>

</td>
</tr>
</table>


<h2 id="dodonts">General guidelines</h2>

<p>Below are some "do and don't" guidelines to consider when creating icons for
your application. By following the guidelines, you can ensure that your icons
will work well with other parts of the Android platform UI and will meet the
expectations of your application's users. </p>

<table style="margin:0px;padding:0px;">
<tr>
<td style="border:0;width:350px;">

<h4>Do...</h4>

<ul>
<li>Use a normal perspective. The depth of an object should be realistic.</li>
<li>Keep it simple! By overdoing an icon, it loses it purpose and
readability.</li>
<li>Use colors only when necessary. Mind that the base of a launcher icon should
be grey and feel solid. </li>
<li>Use the correct angles for the specific icon types.</li>
</ul>
</td>
<td style="border:0;width:350px;">

<h4>Don’t...</h4>

<ul>
<li>Use open elements like text alone as icons. Instead place those elements on
a base shape.</li>
<li>Use colors for your status bar notifications. Those are reserved for
specific phone-only functions.</li>
</ul>
</td>
</tr>
<tr>
<td colspan="2" style="border:0;">
<img src="{@docRoot}images/icon_design/do_dont.png" alt="Side-by-side examples
of good/bad icon design."/>
</td>
</table>

<h2 id="templatespack">Using the Android Icon Templates Pack</h2>

<p>The Android Icon Templates Pack is a collection of template designs, filters,
and settings that make it easier for you to create icons that conform to the
general specifications given in this document. We recommend downloading the
template pack archive before you get started with your icon design.</p>

<p>The icon templates are provided in Adobe Photoshop and Adobe Illustrator file
formats, which preserves the layers and design treatments we used when creating the
standard icons for the Android platform. You can load the template files into any 
compatible image-editing program, although your ability to work directly with the 
layers and treatments may vary based on the program you are using.</p>

<p>You can obtain the Icon Templates Pack archive using the link below: </p>

<p style="margin-left:2em"><a
href="{@docRoot}shareables/icon_templates-v1.0.zip">Download the Icon Templates
Pack &raquo;</a>


<h2 id="iconappendix">Icon appendix</p>

<h3 id="launcherapx">Standard launcher icons</h3>

<p>Shown below are examples of launcher icons used by Android applications. The
icons are provided for your reference only &mdash; please do not reuse these
icons in your applications.</code>.

<table class="image-caption">
<tr>

<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_alarmclock.png" alt="Android asset" />
  <div class="caption">Alarm Clock</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_browser.png" alt="Android asset" />
  <div class="caption">Browser</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_calculator.png" alt="Android asset" />
  <div class="caption">Calculator</div></td>
	

<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_calendar.png" alt="Android asset" />
  <div class="caption">Calendar</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_video_camera.png" alt="Android asset" />
  <div class="caption">Camcorder</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_camera.png" alt="Android asset" />
  <div class="caption">Camera</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_contacts.png" alt="Android asset" />
  <div class="caption">Contacts</div></td>

</tr>
<tr>

<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_phone_dialer.png" alt="Android asset" />
  <div class="caption">Dialer</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_email_generic.png" alt="Android asset" />
  <div class="caption">Email</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_gallery.png" alt="Android asset" />
  <div class="caption">Gallery</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_generic_application.png" alt="Android asset" />
  <div class="caption">Generic application</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_email.png" alt="Android asset" />
  <div class="caption">Gmail</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_google_talk.png" alt="Android asset" />
  <div class="caption">Google Talk</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_IM.png" alt="Android asset" />
  <div class="caption">IM</div></td>

</tr>
<tr>

<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_maps.png" alt="Android asset" />
  <div class="caption">Maps</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_marketplace.png" alt="Android asset" />
  <div class="caption">Market </div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_sms_mms.png" alt="Android asset" />
  <div class="caption">Messaging </div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_musicplayer_2.png" alt="Android asset" />
  <div class="caption">Music</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_settings.png" alt="Android asset" />
  <div class="caption">Settings</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_voicedial.png" alt="Android asset" />
  <div class="caption">Voice Dialer</div></td>


<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_voicesearch.png" alt="Android asset" />
  <div class="caption">Voice Search</div></td>

</tr>
<tr>

<td class="image-caption-i image-list">
  <img src="/images/icon_design/ic_launcher_youtube.png" alt="Android asset" />
  <div class="caption">YouTube</div></td>
</tr>
</table>

<h3 id="menuapx">Standard menu icons</h3>

<p>Shown below are standard menu icons that are included in the Android platform
(as of Android 1.5). You can reference any of these icon resources from your
application as needed, but make sure that the action you assign to the icon is
consistent with that listed. Note that this is not a complete list of icons and
that the actual appearance of standard icons may change across platform
versions.</p>

<p>To reference one of the icons from your code, use
<code>android.R.drawable.&lt;icon_resource_identifier&gt;</code>. For example,
you can call a menu item's {@link android.view.MenuItem#setIcon(android.graphics.drawable.Drawable) setIcon()}
method and pass the resource name:</p> 

<p style="margin-left:2em"><code>.setIcon(android.R.drawable.ic_menu_more);</code>.

<p>You could reference the same icon from a layout file using
<code>android:icon="@android:drawable/ic_menu_more"></code>.</p>

<p>To determine the resource ID for an icon listed below, hover over the icon or
simply look at image filenames, which use the format
"&lt;icon_resource_identifier&gt;.png".</p>

<table class="image-caption">
<tr>

<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_add.png" title="ic_menu_add" alt="Android asset" />
  <div class="caption">Add</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_call.png" title="ic_menu_call" alt="Android asset" />
  <div class="caption">Call</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_camera.png" title="ic_menu_camera" alt="Android asset" />
  <div class="caption">Camera</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_close_clear_cancel.png" title="ic_menu_close_clear_cancel" alt="Android asset" />
  <div class="caption">Clear / Close / Cancel / Discard </div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_compass.png" title="ic_menu_compass" alt="Android asset" />
  <div class="caption">Compass</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_delete.png" title="ic_menu_delete" alt="Android asset" />
  <div class="caption">Delete</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_directions.png" title="ic_menu_directions" alt="Android asset" />
  <div class="caption">Directions</div></td>

</tr>
<tr>

<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_edit.png" title="ic_menu_edit" alt="Android asset" />
  <div class="caption">Edit</div></td>


<td class="image-caption-i image-list">	
  <img src="{@docRoot}images/icon_design/ic_menu_gallery.png" title="ic_menu_gallery" alt="Android asset" />
  <div class="caption">Gallery</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_help.png" title="ic_menu_help" alt="Android asset" />
  <div class="caption">Help</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_info_details.png" title="ic_menu_info_details" alt="Android asset" />
  <div class="caption">Info / details</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_mapmode.png" title="ic_menu_mapmode" alt="Android asset" />
  <div class="caption">Map mode</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_mylocation.png" title="ic_menu_mylocation" alt="Android asset" />
  <div class="caption">My Location</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_more.png" title="ic_menu_more" alt="Android asset" />
  <div class="caption">More</div></td>

</tr>
<tr>

<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_preferences.png" title="ic_menu_preferences" alt="Android asset" />
  <div class="caption">Preferences</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_rotate.png" title="ic_menu_rotate" alt="Android asset" />
  <div class="caption">Rotate</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_save.png" title="ic_menu_save" alt="Android asset" />
  <div class="caption">Save</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_send.png" title="ic_menu_send" alt="Android asset" />
  <div class="caption">Send</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_search.png" title="ic_menu_search" alt="Android asset" />
  <div class="caption">Search</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_share.png" title="ic_menu_share" alt="Android asset" />
  <div class="caption">Share</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_upload.png" title="ic_menu_upload" alt="Android asset" />
  <div class="caption">Upload</div></td>

</tr>
<tr>

<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_view.png" title="ic_menu_view" alt="Android asset" />
  <div class="caption">View</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/ic_menu_zoom.png" title="ic_menu_zoom" alt="Android asset" />
  <div class="caption">Zoom</div></td>

</tr>
</table>


<h3 id="statusbarapx">Standard status bar icons</h3>

<p>Shown below are standard status bar icons included in the Android platform
(as of Android 1.5). You can reference any of these icon resources from your
application as needed, but make sure that the meaning of the icon is consistent
with the standard meaning listed. Note that this is not a complete list of icons
and that the actual appearance of standard icons may change across platform
versions.</p>

<p>To reference one of the icons from your code, use
<code>android.R.drawable.&lt;icon_resource_identifier&gt;</code>. For example,
you can construct a simple notification that references one of the icons like
this: </p>

<p style="margin-left:2em"><code>new Notification(R.drawable.stat_notify_calendar, 
"sample text", System.currentTimeMillis());</code></p>

<p>To determine the resource ID for an icon listed below, hover over the icon 
or simply look at the image filename, which use the format 
"&lt;icon_resource_identifier&gt;.png".</p>


<table class="image-caption">
<tr>

<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/stat_sys_data_bluetooth.png" title="stat_sys_data_bluetooth" alt="Android asset" />
  <div class="caption">Bluetooth</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/stat_notify_email_generic.png" title="stat_notify_email_generic" alt="Android asset" />
  <div class="caption">Email</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/stat_notify_chat.png" title="stat_notify_chat" alt="Android asset" />
  <div class="caption">IM</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/stat_notify_voicemail.png" title="stat_notify_voicemail" alt="Android asset" />
  <div class="caption">Voicemail</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/stat_sys_warning.png" title="stat_sys_warning" alt="Android asset" />
  <div class="caption">Warning</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/stat_sys_phone_call.png" title="stat_sys_phone_call" alt="Android asset" />
  <div class="caption">Call</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/stat_sys_phone_call_forward.png" title="stat_sys_phone_call_forward" alt="Android asset" />
  <div class="caption">Call forward</div></td>

</tr>
<tr>

<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/stat_sys_phone_call_on_hold.png" title="stat_sys_phone_call_on_hold" alt="Android asset" />
  <div class="caption">Call on hold</div></td>


<td class="image-caption-i image-list">
  <img src="{@docRoot}images/icon_design/stat_notify_missed_call.png" title="stat_notify_missed_call" alt="Android asset" />
  <div class="caption">Missed call</div></td>

</tr>
</table>