forked from LibrarySimplified/library-simplified-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
androidtour.html
1441 lines (1353 loc) · 50.9 KB
/
androidtour.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
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
<!DOCTYPE html>
<!DOCTYPE html>
<html language="english">
<head>
<meta charset="utf-8">
<title>Library Simplified · Android UI Tour</title>
<link rel="icon" href="favicon.png">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Google Fonts (more: http://www.google.com/fonts) -->
<!-- Main Font -->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:300,400,700" rel="stylesheet">
<!-- Headings -->
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro" rel="stylesheet">
<!-- Handwritten -->
<link href="http://fonts.googleapis.com/css?family=Marck+Script" rel="stylesheet">
<!-- Countdown, Pricing Table Price Tag -->
<link href="http://fonts.googleapis.com/css?family=Oswald:300,400,700" rel="stylesheet">
<!-- Logo -->
<link href="http://fonts.googleapis.com/css?family=Cantora+One" rel="stylesheet" type="text/css">
<!-- CDN Bootstrap & FontAwesome -->
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.0.0/css/bootstrap.min.css" rel="stylesheet">
<link href="http://netdna.bootstrapcdn.com/font-awesome/3.2.1/css/font-awesome.min.css" rel="stylesheet">
<!-- CSS Libraries -->
<link href="assets/css/animate.min.css" rel="stylesheet">
<link href="assets/css/bxslider.css" rel="stylesheet">
<link href="assets/css/magnific-popup.css" rel="stylesheet">
<!-- Theme Specific CSS -->
<link href="assets/css/styles.css" rel="stylesheet">
<link href="assets/css/custom.css" rel="stylesheet">
<!-- Predefined Color Scheme -->
<link href="assets/css/colors/blue.css" rel="stylesheet" id="colors">
<!-- LESS - Development Only
<link href="assets/less/styles.less" rel="stylesheet/less" />
<script>less = { env: 'development' };</script>
<script src="assets/js/less.js"></script>
-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="assets/js/html5shiv.js"></script>
<script src="assets/js/respond.min.js"></script>
<link href="assets/css/ie8.css" rel="stylesheet"></link>
<![endif]-->
</head>
<body>
<!-- Google Tag Manager -->
<noscript><iframe src="//www.googletagmanager.com/ns.html?id=GTM-RKWC"
height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<script>(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'//www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-RKWC');</script>
<!-- End Google Tag Manager -->
<header id="header" class="navbar">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Skip navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand logo" href="index.html">Library Simplified</a>
</div>
<nav class="collapse navbar-collapse" role="navigation">
<ul class="nav navbar-nav">
<li class="dropdown">
<a href="about.html">About</a>
<ul class="dropdown-menu">
<li><a href="OPDS.html">OPDS</a></li>
<li><a href="EPUB.html">EPUB</a></li>
<li><a href="Readium.html">Readium</a></li>
<li><a href="accessibility.html">Accessibility</a></li>
<li><a href="news-and-events.html">News and Events</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</li>
<li class="dropdown">
<a href="/">Community</a>
<ul class="dropdown-menu">
<li><a href="community.html">Our Community</a></li>
<li><a href="get-involved.html">Getting Involved</a></li>
</ul>
</li>
<li class="dropdown">
<a href="/">Implementors</a>
<ul class="dropdown-menu">
<li><a href="implementorsamigos.html">Amigos</a></li>
<li><a href="implementorscalifa.html">Califa</a></li>
<li><a href="implementorsdatalogics.html">Datalogics</a></li>
<li><a href="lyrasis.html">Lyrasis</a></li>
</ul>
</li> <li class="dropdown">
<a href="IMLS.html">Grant Funded Projects</a>
<ul class="dropdown-menu">
<li><a href="project-design.html">IMLS: Library Simpliifed</a></li>
<li><a href="LEAP-project-design.html">IMLS: LEAP Project Design</a></li>
<li><a href="consortia-project-design.html">IMLS: SimplyE for Consortia</a><li>
</ul>
</li>
<li class="dropdown">
<a href="/">SimplyE</a>
<ul class="dropdown-menu">
<!--<li><a href="productbacklog.html">Product Backlog</a></li>
<li><a href="iOSUItour.html">Mobile: iOS ver 1.0</a></li>
<li><a href="androidtour.html">Mobile: Android ver 1.0</a></li>-->
<li><a href="deployinstruction.html">Deploying the application</a></li>
<li><a href="clientappfaq.html">Mobile Client application how to</a></li>
</ul>
</li>
</ul>
</nav>
</div>
</header><!-- .navbar-fixed-top -->
<div class="page-top">
<div class="container">
<h1 class="page-top-header">Android UI Tour</h1>
<ol class="breadcrumb">
<li><a href="/">Home</a></li>
<li class="active">Android UI Tour</li>
</ol>
</div>
</div>
<div class="container" id="main">
<div class="row">
<div class="col-md-3">
<div id="sidebar" class="affix" role="complementary">
<ul class="nav">
<li><a href="#discover"><strong>Prototype User Interaction</strong></a></li>
<li><a href="#discover">Discover</a></li>
<li><a href="#borrow">Borrow</a></li>
<li><a href="#read">Read</a></li>
<li><a href="#iOS"><strong>Android version 1.0</strong></a></li>
</ul>
</div><!-- .affix -->
</div>
<div class="col-md-9">
<div class="row">
<h4>Simple un-pretentious design</h4>
<p class="lead">
The SimplyE application is designed to organize the tasks required to find, borrow and read and eBook from the library. In doing so the interface had to be utilitarian in design while preserving the visual appeal expected of a quality mobile applications. For library lending, there is less need for supperficial interaction and display in order to sell the user on the content. The content itself is the product so that the application should fall away in order to showcase the collection and curatorial strength of the library.
</p>
<blockquote>
<p>
<strong>The mobile app interface aims to get out of the way and let readers easily find, borrow and read the books they want.</strong>
</p>
<small>Maurico Giraldo</small>
</blockquote>
</div><!-- Row -->
<h2 id="discover"></h2>
<div class="row">
<h5 class="hr2"></h5>
<h2>Prototype User Interaction </h2>
<h4>Find a Book: Discovery</h4>
<div>
<p>
The process of finding something to read is typically framed as a process of
</p>
<ul>
<li><strong>Recommendation</strong></li>
<li><strong>Browse</strong></li>
<li><strong>Search</strong></li>
</ul>
<p>
The process of discovery we believe always starts with <strong>recommendation</strong>. Whether a user comes to the library to <strong>search</strong> for a specific title or author, the intent is informed by some prior recommendation or suggestion regarding the work, or author. The less informed method of discovery can be guided by expert recommendation of a librarian or the user’s awareness of their book preferences through browse paths to collections of books. When users come to the library, they have ready access to librarians to assist them in their discovery. This expert extracts information from the user and guides the user to content in which they can browse collections or directs them to the particular title they are looking for. In commercial bookstores or online books stores, self-guided browsing experiences are facilitated by highly curated collections and navigation schemes and queues based on genre, appeal and popularity.
</p>
</div>
</div><!-- row -->
<div class="row">
<h5>Smart Phone</h5>
<div class="gallery">
<div class="col-sm-4">
<h6>Browse recommended titles by genre category</h6>
<a href="assets/designs2/phone001catalog.png" title="<h3>Easily browse through recommended and suggested titles with in custom genera swim lanes. Select title immediately to place hold, check out, return if necessary or view more titles within genera."><img src="assets/designs2/phone001catalog.png" alt="" /></a>
</div>
<div class="col-sm-4">
<h6>Browse selected genre categories for available titles</h6>
<a href="assets/designs2/phone006lane.png" title="Browse within selected genera, select title immediately to place hold, check out or return if necessary."><img src="assets/designs2/phone006lane.png" alt="" /></a>
</div>
<div class="col-sm-4">
<h6>Browse lists of recommended titles regardless of genre</h6>
<a href="assets/designs2/phone005listdetail.png" title="Browse within selected genera, select title immediately to place hold, check out or return if necessary."><img src="assets/designs2/phone005listdetail.png" alt="" /></a>
</div>
</div><!-- gallery -->
</div><!-- row -->
<div class="row">
<h5>Tablet</h5>
<div class="gallery">
<div class="col-sm-4">
<h6>Browse recommended titles by genre category</h6>
<a href="assets/designs2/tablet01catalog.png" title="<h3>Easily browse through recommended and suggested titles with in custom genera swim lanes. Select title immediately to place hold, check out, return if necessary or view more titles within genera."><img src="assets/designs2/tablet01catalog.png" alt="" /></a>
</div>
<div class="col-sm-4">
<h6>Browse selected genre cetegories for available titles</h6>
<a href="assets/designs2/tablet04listsdetail.png" title="Browse within selected genera, select title immediately to place hold, check out or return if necessary."><img src="assets/designs2/tablet04listsdetail.png" alt="" /></a>
</div>
<div class="col-sm-4">
<h6>Browse lists of recommended titles regardless of genera</h6>
<a href="assets/designs2/tablet06lanes.png" title="Browse within selected genera, select title immediately to place hold, check out or return if necessary."><img src="assets/designs2/tablet06lanes.png" alt="" /></a>
</div>
</div><!-- gallery -->
</div><!-- row -->
<div class="row">
<h2 id="borrow"></h2>
<h4>Borrow</h4>
<div>
<p>The process of borrowing a book from the library "digitally" is cumbersome. However, buying a book commercially is simple from a user perspective. This stems from online book stores having an unlimited supply. Libraries have forced scarcity and must elegantly deal with this issue. To reduce the complexity, we remove the choices from this transaction stream. First, we standardize packaging (EPUB3) and remove alternate digital format decisions. Second, automatically eliminate transaction options if they are irrelevant and only present options and information needed. Third, allow users to "shop" before executing a check requirement (e.g. entering their library card if or signing in.) </p>
</div>
</div><!-- row -->
<div class="row">
<h5>Smart Phone</h5>
<div class="gallery">
<div class="col-sm-4">
<h6>Remove unnecessary decisions such as format from the transaction stream</h6>
<a href="assets/designs2/phone006lane.png" title="Browse within selected genera, select title immediately to place hold, check out or return if necessary."><img src="assets/designs2/phone006lane.png" alt="" /></a>
</div>
<div class="col-sm-4">
<h6>Present immediate and relevant information for a particular interaction.</h6>
<a href="assets/designs2/phone016holddetaildownloadpct.png" title=""><img src="assets/designs2/phone016holddetaildownloadpct.png" alt="" /></a>
</div>
<div class="col-sm-4">
<h6>Allow users to "look" before transacting information.</h6>
<a href="assets/designs2/phone019auth.png" title="If not logged in, simply scan your library card once. Credentials will persist locally so you never have to log in again."><img src="assets/designs2/phone019auth.png" alt="" /></a>
</div>
</div> <!-- gallery -->
</div><!-- row-->
<div class="row">
<h5>Tablet</h5>
<div class="gallery">
<div class="col-sm-4">
<h6>Remove unnecessary decisions such as format from the transaction stream</h6>
<a href="assets/designs2/tablet02catalogdetail.png" title="Browse within lanes, select title immediately to place hold, check out or return if necessary."><img src="assets/designs2/tablet02catalogdetail.png" alt="" /></a>
</div>
<div class="col-sm-4">
<h6>Present immediate and relevant information for a particular interaction.</h6>
<a href="assets/designs2/tablet07holds.png" title=""><img src="assets/designs2/tablet07holds.png" alt="" /></a>
</div>
<div class="col-sm-4">
<h6>Allow users to "look" before transacting information.</h6>
<a href="assets/designs2/tablet08auth.png" title="If not logged in, simply scan your library card once. Credentials will persist locally so you never have to log in again."><img src="assets/designs2/tablet08auth.png" alt="" /></a>
</div>
</div> <!-- gallery -->
</div><!-- row-->
<div class="row">
<h2 id="read"></h2>
<h4>Read</h4>
<div>
<p>
The reading of experience for libraries in regards to eBooks is not unlike that of commercial applications. However, we believe that pure consumption of the content over the user's interaction with the content should be better facilitated. This requires adoption of EPUB3. The EPUB3 format requires additional media types beyond text to be exposed to the readers such as audio, video, and Math ML to be displayed. Additionally, users may want to comment or highlight and annotate content they are researching, referencing or sharing with others. Social features are important for building readers communities and recommending content.
</p>
</div>
</div> <!-- row -->
<div class="row">
<h5>Smart Phone</h5>
<div class="gallery">
<div class="col-sm-4">
<h6>Simply Open and Navigate the content.</h6>
<a href="assets/designs2/phone101reader.png" title="Simply Open and Navigate the content."><img src="assets/designs2/phone101reader.png" alt="" /></a>
</div>
<div class="col-sm-4">
<h6>Access Bookmarks, Annotations, etc.</h6>
<a href="assets/designs2/phone107readerbookmark.png" title="Acess Book Marks, Highlights, Annotations"><img src="assets/designs2/phone107readerbookmark.png" alt="" /></a>
</div>
<div class="col-sm-4">
<h6>Adjust readability and display settings</h6>
<a href="assets/designs2/phone106readerbw.png" title="Adjust readability and display settings"><img src="assets/designs2/phone106readerbw.png" alt="" /></a>
</div>
</div> <!-- gallery -->
</div> <!-- row -->
<div class="row">
<h5>Tablet</h5>
<div class="gallery">
<div class="col-sm-4">
<h6>Simply Open and Navigate the content.</h6>
<a href="assets/designs2/tablet101reader.png" title="Simply Open and Navigate the content."><img src="assets/designs2/tablet101reader.png" alt="" /></a>
</div>
<div class="col-sm-4">
<h6>Access Bookmarks, Annotations, etc.</h6>
<a href="assets/designs2/tablet103readernotes.png" title="Acess Book Marks, Highlights, Annotations"><img src="assets/designs2/tablet103readernotes.png" alt="" /></a>
</div>
<div class="col-sm-4">
<h6>Adjust readability and display settings</h6>
<a href="assets/designs2/tablet102readersettings.png" title="Adjust readability and display settings"><img src="assets/designs2/tablet102readersettings.png" alt="" /></a>
</div>
</div> <!-- gallery -->
</div> <!-- row -->
<h2 class="hr2"></h2>
<h2 id="iOS"></h2>
<h2>SimplyE Android NYPL implementation version 1.0</h2>
<p class="lead">
For NYPL, SimplyE was styled to relfect its standard color pallet and incorporate its library icon. The application also took advantage of two optional features for Card Applications and HelpStack integration with Desk.com ticket management for in app help with AskNYPL. While the mockups reflect a newer bottom of screen tab option made recently avaialable on Androids Material Design guide, it is not in the initial implementation that is native to the majority of apps on Android. In the future, the tabbed menus might be implemented to make the implmentation reflect the original desing and iOS implementation.
</p>
<h5>Smartphone</h5>
<p>
<ul class="portfolio-filter list-inline">
<li class="active"><a href="#" data-filter="*">All</a></li>
<li><a href="#" data-filter=".pbrowse">Browse</a></li>
<li><a href="#" data-filter=".psearch">Search</a></li>
<li><a href="#" data-filter=".pborrow">Get (Borrow)</a></li>
<li><a href="#" data-filter=".pholds">Reserve (Place Hold)</a></li>
<li><a href="#" data-filter=".pread">Read</a></li>
<li><a href="#" data-filter=".plogin">Log In/Out</a></li>
<!--<li><a href="#" data-filter=".apply">Optional: Sign Up</a></li>
<li><a href="#" data-filter=".help">Optional: Help</a></li>-->
</ul>
</p>
<div class="row">
<ul class="portfolio">
<li class="pbrowse">
<a href="">
<img src="assets/androidscreenshots/phonebrowse01.png" alt="" />
<span class="type">Browse</span>
<span class="portfolio-item-content">
<span class="header">Browse</span>
<p>
<strong>Browse the Catalog</strong>
</p>
<span class="body">
<p>
<ul>
<li>Swipe left and right on the NetFlix style lanes to see popular and available titles</br></li>
<li>Swipe up and down to view more catagories</br></li>
<li>Tap the category heading or More... to see more books in the category</br></li>
<li>Tap the refresh in the upper left to update the view of titles</li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="psearch">
<a href="">
<img src="assets/androidscreenshots/phone01search.png" alt="" />
<span class="type">Search</span>
<span class="portfolio-item-content">
<span class="header">Search</span>
<p>
<strong>Search the Catalog</strong>
</p>
<span class="body">
<p>
<ul>
<li>Tap the inside the search bar to bring up the keyboard</br></li>
<li>Tap the title ,author or other keyword for the work you are searching for</br></li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="pborrow">
<a href="">
<img src="assets/androidscreenshots/phone01bookdetailborrow.png" alt="" />
<span class="type">Borrow</span>
<span class="portfolio-item-content">
<span class="header">Borrow</span>
<p>
<strong>Borrow</strong>
</p>
<span class="body">
<p>
<ul>
<li>
When you find a book you want to read tap the Get button to borrow.
</li>
</ul>
</p>
<p>
NOTE: If the book is not a available the a Hold button will be avialable</br>
If a book is already borrowed a Download button will be displayed.
</p>
</span>
</span>
</a>
</li>
<li class="pborrow">
<a href="">
<img src="assets/androidscreenshots/phone02bookdetailborrow.png" alt="" />
<span class="type">Borrow</span>
<span class="portfolio-item-content">
<span class="header">Borrow</span>
<p>
<strong>Borrow</strong>
</p>
<span class="body">
<p>
<ul>
<li>
Tap Cancel to cancel download if desired
</li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="pholds">
<a href="">
<img src="assets/androidscreenshots/phone01bookdetailreserve.png" alt="" />
<span class="type">Reserve</span>
<span class="portfolio-item-content">
<span class="header">Reserve</span>
<p>
<strong>Reserve</strong>
</p>
<span class="body">
<p>
<ul>
<li>
Tap Reserve to plal=ce hold on a title
</li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="pholds">
<a href="">
<img src="assets/androidscreenshots/phone03bookdetailreserve.png" alt="" />
<span class="type">Reserve</span>
<span class="portfolio-item-content">
<span class="header">Reserve</span>
<p>
<strong>Reserve</strong>
</p>
<span class="body">
<p>
Tap Remove to cancel the reservation if needed
</p>
</span>
</span>
</a>
</li>
<li class="pread">
<a href="">
<img src="assets/androidscreenshots/phone03bookdetailborrow.png" alt="" />
<span class="type">Read</span>
<span class="portfolio-item-content">
<span class="header">Read</span>
<p>
<strong>Read</strong>
</p>
<span class="body">
<p>
<ul>
<li>Tap Read to open books</li>
<li>Tap Return Now to end loan if desired</li>
</ul>
</p>
<p>
NOTE: A blue dot will display next to cover if it has yet to be opened.
</p>
</span>
</span>
</a>
</li>
<li class="pread">
<a href="">
<img src="assets/androidscreenshots/phone01readcover.png" alt="" />
<span class="type">Read</span>
<span class="portfolio-item-content">
<span class="header">Read</span>
<p>
<strong>Read</strong>
</p>
<span class="body">
<p>
<ul>
<li>Swipe left or right to advance page by page through the book </br>
OR</li>
<li>Tap left for right edge of the book to move throught the book</li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="pread">
<a href="">
<img src="assets/androidscreenshots/phone03readformat.png" alt="" />
<span class="type">Read</span>
<span class="portfolio-item-content">
<span class="header">Read</span>
<p>
<strong>Read</strong>
</p>
<span class="body">
<p>
<ul>
<li>Tap screen to display Menu Bar</li>
<li>Tap Font Icon to adjust text font, size, and contrast and display brightness</li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="pread">
<a href="">
<img src="assets/androidscreenshots/phone02readtoc.png" alt="" />
<span class="type">Read</span>
<span class="portfolio-item-content">
<span class="header">Read</span>
<p>
<strong>Read</strong>
</p>
<span class="body">
<p>
<ul>
<li>Tap screen to display Menu</li>
<li>Tap TOC Icon to acces the Table of Contents</li>
<li>Tap TOC section desired to naviage to the desired location</li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="pborrow">
<a href="">
<img src="assets/androidscreenshots/phone03bookdetailborrow.png" alt="" />
<span class="type">Borrow</span>
<span class="portfolio-item-content">
<span class="header">Borrow</span>
<p>
<strong>Return Book</strong>
</p>
<span class="body">
<p>
</p>
</span>
</span>
</a>
</li>
<li class="plogin">
<a href="">
<img src="assets/androidscreenshots/phonelogin.png" alt="" />
<span class="type">Log In/Out</span>
<span class="portfolio-item-content">
<span class="header">Log In/Out</span>
<span class="body">
<p>
<ul>
<li>Enter your Barcode and PIN into the respective feilds</li>
<li>Tap Log In to verify and sign in or Log Out to sign out.<li>
</ul>
</p>
</span>
</span>
</a>
</li>
<!--<li class="help">
<a href="">
<img src="assets/androidscreenshots/phonehelp.png" alt="" />
<span class="type">Optional: Help</span>
<span class="portfolio-item-content">
<span class="header">Help</span>
<p>
<strong>FAQs</strong>
</p>
<span class="body">
<p>
<ul>
<li>From the More Tab</li>
<li>Tap Help to see FAQs, How-To guides or submit an issue</li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="help">
<a href="">
<img src="assets/androidscreenshots/15help.png" alt="" />
<span class="type">Optional: Help</span>
<span class="portfolio-item-content">
<span class="header">Help</span>
<p>
<strong>FAQs</strong>
</p>
<span class="body">
<p>
<ul>
<li>Tap on a particular topic under FAQs</li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="help">
<a href="">
<img src="assets/androidscreenshots/15help2.jpg" alt="" />
<span class="type">Optional: Help</span>
<span class="portfolio-item-content">
<span class="header">Help</span>
<p>
<strong>FAQs</strong>
</p>
<span class="body">
<p>
<ul>
<li>Tap on the different FAQ Topics to see relevant information and instructions</li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="help">
<a href="">
<img src="assets/androidscreenshots/15help3.png" alt="" />
<span class="type">Optional: Help</span>
<span class="portfolio-item-content">
<span class="header">Help</span>
<p>
<strong>FAQ</strong>
</p>
<span class="body">
<p>
<ul>
<li>Tap on Issue to submit and issues</li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="help">
<a href="">
<img src="assets/androidscreenshots/15help.png" alt="" />
<span class="type">Optional: Help</span>
<span class="portfolio-item-content">
<span class="header">Help</span>
<p>
<strong>Submit Issue</strong>
</p>
<span class="body">
<p>
<ul>
<li>Tap on Issue to submit and issues</li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="help">
<a href="">
<img src="assets/androidscreenshots/15help4.png" alt="" />
<span class="type">Optional: Help</span>
<span class="portfolio-item-content">
<span class="header">Help</span>
<p>
<strong>Submit Issue</strong>
</p>
<span class="body">
<p>
<ul>
<li>Enter the requested contact information</li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="help">
<a href="">
<img src="assets/androidscreenshots/15help5.jpg" alt="" />
<span class="type">Optional: Help</span>
<span class="portfolio-item-content">
<span class="header">Help</span>
<p>
<strong>Submit Issue</strong>
</p>
<span class="body">
<p>
<ul>
<li>Enter the issue and details about the issue encountered</li>
</ul>
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/14settingsnotloggedin.png" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
From the More Tab, Tap Library Card
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
Tap Sign Up to apply for a Library Barcode and PIN
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup1.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
Tap Settgins to allow the access the application permision to access function on your iOS device needed to provide as part of the application process.
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup1a.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<p>
<strong>Settings</strong>
</p>
<span class="body">
<p>
Tap Location
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup1b.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<p>
<strong>Settings</strong>
</p>
<span class="body">
<p>
Select "While using the app."
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup1c.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<p>
<strong>Settings</strong>
</p>
<span class="body">
<p>
Tap Settings to return to SimplyE.
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup2.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
Tap Continue.
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup3.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
Tap Allow to let the app confirm you are in New York.
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup4.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
Tap Allow to let the app confirm you are in New York.
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots16signup4b.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
Tap Allow to let the app confirm you are in New York.
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup5.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
Tap Allow to let the app confirm you are in New York.
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup6.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
Tap Allow to let the app confirm you are in New York.
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup7.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
Tap Allow to let the app confirm you are in New York.
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup8.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
Tap Allow to let the app confirm you are in New York.
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup9.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
Tap Allow to let the app confirm you are in New York.
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup10.jpg" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
Tap Allow to let the app confirm you are in New York.
</p>
</span>
</span>
</a>
</li>
<li class="apply">
<a href="">
<img src="assets/androidscreenshots/16signup11.png" alt="" />
<span class="type">Optional: Sign Up</span>
<span class="portfolio-item-content">
<span class="header">Optional: Sign Up</span>
<span class="body">
<p>
Tap Return to Catalog to exit.
</p>
</span>
</span>
</a>
</li>-->
</ul>
</div>
<h5>Tablet</h5>
<p>
<ul class="portfolio-filter list-inline">
<li><a href="#" data-filter="*">All</a></li>
<li><a href="#" data-filter=".tbrowse">Browse</a></li>
<li><a href="#" data-filter=".tsearch">Search</a></li>
<li><a href="#" data-filter=".tborrow">Get (Borrow)</a></li>
<li><a href="#" data-filter=".tholds">Reserve (Place Hold)</a></li>