Android Cookbook 1st Edition Ian F. Darwin instant download
Android Cookbook 1st Edition Ian F. Darwin instant download
Darwin pdf
download
https://ebookfinal.com/download/android-cookbook-1st-edition-ian-
f-darwin/
https://ebookfinal.com/download/the-android-developer-s-cookbook-2nd-
edition-building-applications-with-the-android-sdk-ronan-schwarz/
https://ebookfinal.com/download/analog-circuits-cookbook-2nd-ed-
edition-ian-hickman/
https://ebookfinal.com/download/voice-application-development-for-
android-1st-edition-michael-f-mctear/
https://ebookfinal.com/download/wind-stress-over-the-ocean-1st-
edition-ian-s-f-jones/
Expert Android 1st Edition Satya Komatineni
https://ebookfinal.com/download/expert-android-1st-edition-satya-
komatineni/
https://ebookfinal.com/download/beginning-android-1st-edition-mark-
murphy/
Gradle Recipes for Android Master the New Build System for
Android 1st Edition Ken Kousen
https://ebookfinal.com/download/gradle-recipes-for-android-master-the-
new-build-system-for-android-1st-edition-ken-kousen/
https://ebookfinal.com/download/android-in-practice-1st-edition-
charlie-collins/
https://ebookfinal.com/download/smashing-android-ui-1st-edition-
juhani-lehtimaki/
Android Cookbook 1st Edition Ian F. Darwin Digital
Instant Download
Author(s): Ian F. Darwin
ISBN(s): 9781449388416, 1449388418
Edition: 1
File Details: PDF, 8.48 MB
Year: 2011
Language: english
Android Cookbook
Android Cookbook
Published by O’Reilly Media, Inc., 1005 Gravenstein Highway North, Sebastopol, CA 95472.
O’Reilly books may be purchased for educational, business, or sales promotional use. Online editions
are also available for most titles (http://safari.oreilly.com). For more information, contact our corporate/
institutional sales department: (800) 998-9938 or corporate@oreilly.com.
Android is a trademark of Google, Inc. for their open-source operating environment for mobile devices.
Linux is a trademark of Linus Torvalds. Java is a trademark of Oracle America Corporation (formerly
Sun Microsystems).
Nutshell Handbook, the Nutshell Handbook logo, and the O’Reilly logo are registered trademarks of
O’Reilly Media, Inc. !!FILL THIS IN!! and related trade dress are trademarks of O’Reilly Media, Inc.
Many of the designations uses by manufacturers and sellers to distinguish their products are claimed as
trademarks. Where those designations appear in this book, and O’Reilly Media, Inc. was aware of a
trademark claim, the designations have been printed in caps or initial caps
While every precaution has been taken in the preparation of this book, the publisher and authors assume
no responsibility for errors or omissions, or for damages resulting from the use of the information con-
tained herein.
ISBN: 978-1-449-38841-6
[?]
1318018084
Table of Contents
Preface . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xiii
1. Getting Started . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
1.1 Introduction: Getting Started 1
1.2 Learning the Java Language 1
1.3 Hello World - Command Line 3
1.4 Hello World - Eclipse Version 5
1.5 Set Up an Android Virtual Device for Apps Testing 10
1.6 Set Up an IDE on Windows to Develop for Android 23
1.7 Android Lifecycle 32
1.8 Opening a Web Page, Phone Number or anything else with an Intent 33
1.9 Email Text From a View 35
1.10 Sending an email with attachments 38
1.11 Installing .apk files on the emulator 40
1.12 Installing apps onto an Android Emulator 40
1.13 Android Epoch HTML/Javascript Calendar 43
1.14 Sharing Java classes from another Eclipse Project 48
1.15 Referencing libraries to implement external functionality 49
1.16 Use SDK Samples to Help Avoid Head Scratching 50
1.17 Keeping the Android SDK Updated 55
1.18 Five Ways to Wire Up an Event Listener 61
1.19 Taking a Screenshot from the Emulator/Android Device 69
1.20 Program: A Simple CountDownTimer example 70
1.21 Program: Tipster, a tip calculator for the Android OS 73
v
2.6 Android's Application Object as a "Singleton" 101
2.7 Keeping data when the user rotates the device 103
2.8 Creating a Responsive Application using Threads 105
2.9 Eating Too Much CPU Time In The UI Causes A Nasty Result 107
2.10 AsyncTask: Do background tasks and modify the GUI 113
2.11 Monitoring the Battery Level of your Android Device 114
2.12 Splash Screens in Android: Method 1 115
2.13 Splash Screens in Android: Method 2 117
2.14 Designing a Conference/*Camp/Hackathon App 123
2.15 Implementing Autocompletion in Android. 124
2.16 Using Google Analytics in Android Application 126
2.17 Using AsyncTask to do background processing 128
2.18 A Simple Torch Light 134
2.19 Adapting Android Phone Application to Tablet 136
2.20 First Run preferences 138
2.21 Formatting the time and date display 139
2.22 Controlling Input with KeyListeners 142
2.23 Android Application Data Backup 145
2.24 Making password fields 151
2.25 Working Without Tooltips: Use Hints Instead 152
3. Testing . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 157
3.1 Introduction: Testing 157
3.2 How to TDD(test driven development) Android App 157
3.3 How to troubleshoot "The application has stopped unexpectedly.
Please try again" 158
3.4 Debugging using Log.d and LogCat 161
3.5 Keep Your App Snappy With StrictMode 163
3.6 Barrel of Monkeys 164
3.7 Sending text messages and placing calls between AVDs 165
3.8 Activity LifeCycle Scenarios for Testing 166
5. Graphics . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 185
5.1 Introduction: Graphics 185
5.2 Getting Screenshots 185
5.3 Using a Custom Font 186
5.4 Draw a spinning cube with OpenGL ES 191
vi | Table of Contents
5.5 Adding control to the OpenGL spinning cube 196
5.6 Taking a Picture Using an Intent 199
5.7 Taking a Picture Using android.media.Camera 201
5.8 Using AndroidPlot to display charts and graphs in your Android
application. 205
5.9 Use Inkscape to Create an Android Launcher Icon 207
5.10 Easy Launcher Icons from OpenClipArt.org using Paint.NET 216
5.11 Android HTML5 RGraph Charting 228
5.12 Simple Raster Animation 232
8. Multimedia . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 407
8.1 Introduction: Multimedia 407
8.2 Play a Youtube Video 407
8.3 Using Gallery with ImageSwitcher 408
8.4 Grabbing a video using MediaRecorder 411
8.5 Android Face Detection 414
8.6 Playing audio from a file 417
8.7 Playing Audio without Interaction 420
8.8 Using Speech to Text 421
8.9 Making the Device Speak with TTS 423
Table of Contents | ix
13.3 Loading a user's Twitter timeline (using JSON) 528
x | Table of Contents
17. System and Device Control . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 611
17.1 Phone network/connectivity information 611
17.2 Changing incoming call notification to Silent, Vibrate, or normal 612
17.3 Rebooting the Device 614
17.4 Running shell commands from your application 616
17.5 Copying text and getting text from the Clipboard 617
17.6 Making LED based notifications 619
17.7 Making the Device Vibrate. 620
17.8 Determining Whether a Given Application is Running 621
Table of Contents | xi
Preface
Preface
Ian Darwin
Android is "the open source revolution" applied to cellular telephony. At least, part of
it. There are many other attempts to provide open source cell phones, ranging from the
mostly-defunct Openmoko Freerunner through QT Embedded, Moblin, LiMo, Debian
Mobile, Maemo to the recently-open-sourced Symbian OS. Not to mention the estab-
lished non-open-source stalwarts: Blackberry OS, Apple's iPhone, and Microsoft Win-
dows Mobile (these have developer toolkits, but their OS is not available as open
source).
"Nobody's armchair is a good predictor of the future", though, as Mike O'Dell once
said. Does Android have a place in the sun alongside these other players? We think it
does. This book is here to help the Android developer community share the knowledge
that will make it happen. Those who contribute knowledge here are helping make
Android development easier for those who come after.
About Android
Android is a mobile technology platform that provides cell phones, tablets and other
hand-held and mobile devices (even netbooks) with the power and portability of the
Linux operating system and the reliability and portability of a standard high-level lan-
guage and API. Android apps are written in the Java language, using tools such as
Eclipse, compiled against the Android API, and translated into bytecode for the Dalvik
VM.
Android is thus related by OS family to Openmoko, QT Embedded, MeeGo (the 2010
merger of Nokia's Maemo and Intel's MobLin), OPhone, LiMo and other Linux-based
cell phone projects. Android is also related by programming language to Blackberry
and JavaME phones, and to Java and the wider realm of Java Enterprise applications.
Android sales have continued to climb; there is a report from NPD that first-quarter
2010 sales of all Android devices exceeded sales of the iPhone, moving it into second
xiii
place (although still well behind the Blackberry platform). Surely it was due in part to
major carrier Verizon's 2-for-1 sale, but that doesn't account for all of it...
xiv | Preface
Every mobile app needs a GUI, so Chapter 6, Graphical User Interface, covers all the
ins and outs of GUI development for Android. Examples are given both in XML and
in hard-coded GUI development.
Chapter 7, GUI: ListView, focuses on one of the most important Graphical User Inter-
faces in Android, the ListView.
Android is rich in multimedia capabilities. Chapter 8, Multimedia, shows how.
Chapter 9, Data Persistence, shows how to save data into files, databases and so on.
And how to retreive it later, of course.
Android started out as an operating system for mobile telephones. Chapter 10, Tele-
phone Applications, shows how to control and react to the telephone device that is in
most mobile devices nowadays.
Mobile devices are, for the most part, always-on and always-connected. This has a
major impact on how people use them and think about them. Chapter 11, Networked
Applications, shows the coding for traditional networked applications. This is followed
by Chapter 12, Gaming and Animation, and Chapter 13, Social Networking.
The now-ubiquitous Global Positioning System has also had major implications on
how mobile applications work. Chapter 14, Location and Map Applications, discusses
how to find your location, how to get map data from Google and OpenStreetMap, and
how applications can be location-aware in ways that are just now being explored.
Chapter 15, Accellerometer, talks about the sensors built into most Android devices
and how to use them.
There may be a Chapter 16, Bluetooth, if there's enough to say about it, going way
beyond connecting your Bluetooth(TM) headset to your phone. This is followed by
Chapter 17, System and Device Control.
In Chapter 18, Other Programming Languages, we explore the use of other program-
ming languages to write all or part of your Android application. Examples include C,
Perl, Python, Lisp, and other languages.
While this book is in English, and English remains the #1 language worldwide, it is far
from the only one. And most end users would much rather have an application that
has its text in their language and its icons in a form that is culturally correct for them.
Chapter 19, Internationalization, goes over the issues of language and culture and how
it relates to Android.
Most Android developers hope that their applications will be used by other people. But
this won't happen unless users can find your application. Chapter 20, Packaging, de-
ploying and selling, shows how to prepare your application for distribution via the An-
droid Market, and to use that as well as other markets to get your application out to
the people that will use it.
Preface | xv
Finally, Chapter 21, Other, covers a few miscellaneous topics that don't quite fit any-
where else.
Android Books
T.B.A.
xvi | Preface
Using Code Examples
This book is here to help you get your job done. In general, you may use the code in
this book in your programs and documentation. You do not need to contact us for
permission unless you’re reproducing a significant portion of the code. For example,
writing a program that uses several chunks of code from this book does not require
permission. Selling or distributing a CD-ROM of examples from O'Reilly books does
require permission. Answering a question by citing this book and quoting example
code does not require permission. Incorporating a significant amount of example code
from this book into your product’s documentation does require permission.
We appreciate, but do not require, attribution. An attribution usually includes the title,
author, publisher, and ISBN. For example: "Book Title by Some Author. Copyright
2008 O'Reilly Media, Inc., 978-0-596-xxxx-x."
If you feel your use of code examples falls outside fair use or the permission given above,
feel free to contact us at permissions@oreilly.com.
How to Contact Us
Please address comments and questions concerning this book to the publisher:
O'Reilly Media, Inc.
1005 Gravenstein Highway North
Sebastopol, CA 95472
800-998-9938 (in the United States or Canada)
707-829-0515 (international or local)
707-829-0104 (fax)
Preface | xvii
We have a web page for this book, where we list errata, examples, and any additional
information. You can access this page at:
http://www.oreilly.com/catalog/9781449388416
To comment or ask technical questions about this book, send email to:
bookquestions@oreilly.com
For more information about our books, conferences, Resource Centers, and the O'Reil-
ly Network, see our website at:
http://www.oreilly.com
xviii | Preface
CHAPTER 1
Getting Started
Discussion
The famous "Hello, World" pattern came about when Kernighan and Plaugher wanted
to write a "Recipe" on how to get started in any new programming language and envi-
ronment. This chapter is affectionately dedicated to these fine gentlemen, and to ev-
eryone who has ever struggled to get started in a new programming paradigm.
Problem
Android apps are written in the Java(tm) programming language before they are con-
verted into Android's own class file format, DEX. If you don't know how to program
in Java you will find it hard to write Android apps.
Solution
There are lots of resources available to learn Java. Most of them will teach you what
you need, but will also teach some API classes that are not available. Avoid any sections
in any book that talk about topics in the left-hand column:
Table 1-1. Parts of Java API to Ignore
Java API Android Equivalent
Swing, Applets Android's GUI, see [[Introduction: GUI]]
application entry point main() See [[Android Lifecycle]]
1
Java API Android Equivalent
J2ME/JavaME Most of android.* replaces JavaME API
Servlets/JSP, J2EE/JavaEE Designed for server-side use
Discussion
Here are some books and resources:
• O'Reilly's Java in a Nutshell is a good introduction for programmers, particularly
those immigrating from C/C++. This book has grown from an acorn to a coconut
in size, to keep up with the growth of Java SE over its lifetime.
• Head First Java provides a great visual-learner-oriented introduction to the lan-
guage. O'Reilly.
• Thinking In Java (4th edition) by Bruce Eckel, Prentice-Hall.
• Learning Java Formerly titled Exploring Java, O'Reilly.
• Great Java videos provides a visual introduction to the language.
• Java: The Good Parts From the book's web site: "What if you could condense Java
down to its very best features and build better applications with that simpler ver-
sion? In this book, veteran Sun Labs engineer Jim Waldo reveals which parts of
Java are most useful, and why those features make Java among the best program-
ming languages available..."
• Java Cookbook (disclosure: I wrote this book) is regarded as a good second book
for Java developers. It has entire chapters on Strings, Regular Expressions, Num-
bers, Dates & Time, Structuring Data, I/O and Directories, Internationalization,
Threading and Networking, all of which apply to Android. It has a number of
chapters that are specific to Swing and to some EE-based technologies.
What's needed is for somebody to write a book on Android for non-Java Program-
mers that would include just exactly the right parts of standard Java language and API
along with all the Android stuff. Available now in three volumes, ships in its own cool
retro wooden case... :-).
See Also
This book's editor maintains a list of Java resources online at http://www.darwinsys
.com/java/.
O'Reilly has many of the best Java books around; there's a complete list at http://oreilly
.com/pub/topic/java.
I.
Ingelby, Sir H. D., Bart., 80
Inguar and Hubba, Danes, 40
Ipre, Sir John, 141
Ivo Taillebois, 15, 24, 48, 58, 87, 121, 137, 138, 139, 151, 159,
176, 180, 188
,, his tyrranous nature, 159, 188
J.
Jeffery, Stennet, murderers of, 119, 120
Jenney, Sir Thomas, 125
K.
Karilepho, William de, Bishop of Durham, 48, 54, note, 101, 102,
103, 144, 151, 208, 215, 228
,, Abbey of St., in Normandy, 102
“Key-hole” window in Lusby church, 155
Kighly, John, of Salmonby, at Agincourt, 172
King, E., of Ashby-de-la-Launde, land in Salmonby, 171
King Henry IV., 49, 88, 177
Kirketon, of Kirketon (Kirton), 66, 108, 109
Kirkby-on-Bain, church described, 116, 117, 118
,, Armorial bearings, once in church, 109
,, Jurisdiction of, 105
,, a “town,” 105
,, Pontefract also called Kirkby, 104
,, Owners of—
,, ,, Ulmar, Godwin, Gonewate, Saxons, 101
,, ,, Odo, Bishop of Baieux, 101
,, ,, William de Karilepho, 101
,, ,, Ilbert de Lacy, 103, 104
,, ,, Eudo, son of Spirewic, 105
,, ,, Henry Travers, 106
,, ,, Wido de Laval, 106
,, ,, Albreda de Lisours, 106
,, ,, Richard Fitz-Eustache, 106
,, ,, Earl of Lancaster, 106
,, ,, Bec family, 106, 107
,, ,, Willoughby family, 108
,, ,, Ralph de Cromwell, 109
,, ,, Dymokes and Cressies, 110
,, ,, Percy family, 112
,, ,, Lord Clinton, 114
,, ,, Lord Fortescue, 114
,, ,, Sir H. M. Hawley, 114
,, ,, Stanhope family, 114
,, ,, H. Rogers, Esq., 114
Kirkby, East, church described, 128, 131
,, Owners of—
,, ,, Ivo Taillebois, 121
,, ,, Romara family, 121
,, ,, De La Launde family, 121
,, ,, Duke of Lancaster, Henry IV. 121
,, ,, Sir Vincent Skinner, 121
,, ,, Littlebury family, 124
,, ,, R. Maidens, Esq., 122
,, ,, Dr. T. Robinson, 122
,, ,, Stanhope and Coltman families, 122
,, Bequest of money for “exhibition,” 124 and note
,, “Silver salt” and “silver flat piece,” 124
,, Browne, Sir John, Knt., 126
,, “Sergant of Privy Chamber,” 127
,, Treasurer of Ireland, 127
,, Granted land at “Peppercorn Rent,” 126, 127
,, Ealand family, held “Honour of Peverel,” 127
,, Sir William, Constable of Nottingham Castle, 127
,, Lucy Faber gives meadow “to strew the monks’ floor,” 122
,, Goodrich family, 123, 124, note
,, Bishop of Ely, his character, 131 note
,, Epigram on, 131 note
,, Sapcote family, 125
,, Silkstone, Robert de, Monument in Church, 126
,, Smerehorn, Alan gives Watermill to Revesby Abbey, 128
,, Webberly family, John, strong supporter of Charles I., 128
Kirkstead, Abbey founded by Hugh, Fitz Eudo, 105, 229
,, Mastiffs, 101, note
Knatchbull, Sir Edward, 114, 164
Knollys, Hanserd, Churchman and Baptist, 181 and note
Kyme, Barony of, 61
,, family, 110, 182
,, Simon de, 131
L.
Lacy, John de, 88
,, John de, Earl of Lincoln, 104
,, Ilbert de, Lord of Kirkby-on-Bain, 104, 177, 208
,, Also of Pontefract, called Kirkby by the Saxons, 104
,, Great possessions of, 104
,, Henry de, 104
Lucia, 15, 87, 88, 121, 152, 159, 176, 178, 180, 189, 194, 208
Lancaster, Duke of, 27
,, Thomas, Earl of, 106
Langrick, i.e., Long Creek, 99
Langton of Langton, Patron of Lusby, 1677–1833, 149
,, Stephen de, Archbishop, 134
Laval, Wido de, 106
Lawlessness, temp. Simon de Tumby, 108 note
Leedsgate, i.e., “our Lady’s gate,” 119
“Liber Niger,” Hearne’s, 54
Lichgate, memorial to Honble. E. Stanhope, 168
Lindisfarne, Monks of, 103
Lisours, Albreda de, 106
Lister, Sir Martin, Eminent Zoologist, &c., 61, 62
,, Sir Matthew, Court Physician, &c., 60, 62
,, Matthew, Esq., Lord of Oxcombe, 149
Littlebury, family of, 6, 8, 90, 91 and note, 124, 153
,, Sir Humphrey, 6
,, George of Somersby, 51
,, Humphrey, 152
,, John of Hagworthingham, 77
,, Margaret, bequest to the poor, 170
,, Their large residence, 171
Livesey, Thomas, Esq., of Blackburn, 20
Lodington family, 126
Lola Montez, 35
L’Oste, Revs. C. N., 166 and note
Lusby church described, 135, 136
,, Owners of—
,, ,, Tonna Almer and other Saxons, 131
,, ,, Gilbert de Gaunt, 131
,, ,, Simon de Kyme, 131
,, ,, Walter de Bec, 132
,, ,, Ranulph, Bishop of Durham, 132
,, ,, Pinson, 132
,, ,, John Bec, 133
,, ,, Willoughby family, 133
,, ,, Bishop of Durham, 134
Bishop of Lincoln, 134
M.
Malbish, Osbert, 48
,, Richard de, 47
Maletoft, Roger de, 178
Malo Lacu (Mauley) family of, 146
,, Arms of, 147
Malo Lacu, Peter, born at Poictou, 146
,, Built Castle of Mountgrace, 146
Manvers, Earl, 62, 80, 96
Manure of sheep in Kirkby granted to Kirkstead Abbey, 107
Margaret, St., 227, note
Mastiffs of Kirkstead Abbey, 101, note
Massenge, or Masinge, 123 and note
Mavis Enderby, church described, 52–3
,, Owners of, see Enderby, Mavis
Meschines, Ranulph de, 88, 201
Mills, as valuable property, 12 note, 103, 105, 108, 135, note, 156,
176, 225
Miningsby, church described, 142
,, ,, Runic stone in Churchyard, 142
,, ,, Ranulph de, 139
,, Owners of Miningsby—
,, ,, Moretaine, Earl of, 102
,, ,, Ivo Taillebois, 138, 139
,, ,, William de Romara, 139
,, ,, Baldric, de Cheles, 139
,, ,, Hugo Wac (Wake), 139
,, ,, Ranulph de, Miningsby, 139
,, ,, Hubert Walker, Archbishop, 140
,, ,, Robert de Herecourt, 140
,, ,, Charles Brandon, Duke of Suffolk, 140
,, ,, John Scayman, of Miningsby, 141
,, ,, Robert de Willoughby, 141
,, ,, Sir John de Ipre, 141
,, ,, Richard Skepper, 140
,, ,, Grynne family, 141
Monas-Tessera-Graphica, 51
Montez, Lola, 35
N.
Names of fields, peculiar, 9, 10, 11, 18, 40, 70, 71, 79, 84, 114,
115, 119, 122, 123, 127, 141, 150, 151, 161, 170, 171, 207
Newcastle, Duke of, 20, 180
Newcomen, John, of “Sallaby,” 68
,, Pedigree, 69
Newcomen, Richard, of “Nether Toynton,” 68
,, Samuel, of “Nether Toynton,” 68, 69
“Niger Liber,” Hearne’s, 54
Northumberland, Earl of, 59
Nova-villa, Robert de, 208
O.
Odd, Bishop of Baieux, 2, 101, 102, 182, 208
Old Revesby deeds, from Burghley House, 161
Oratory Medlam, (Revesby), 161
Ordericus Vitalis quoted, 226
Ormsby, Richard de, 146
Oswy, King of Northumbria, 102, 103
Otter, Francis, memorial window, 157
Otter, Miss, restored Ranby church, 1839, 156
P.
Palfreyman, 44, 125 and note, 134
Parker, John, a “Recusant,” 80
“Pelham Buckle,” its origin, 178 and note
“Peppercorn” rent, 127, 163
Percy, Henry, 59
Percy family, 110, 112
Pinson, “Dapifer,” 54, 132, 230
Plantagenet, Edmund, 88
Plantagenet, wood planted by, 90
Poolham, 35, 36, 37, 38, 43
Portland, Duke of, 181
Prayers for the dead, 84
Privilege of wearing hat before Royalty, 3, 195
Proviso, curious in Will, 124
Q.
Quincy, Hawise de, 76
Robert de, 88
Quitclaims, Walter Bec, toll of corn, 107
,, Manure of sheep, 107
R.
Raithby church described, 154
,, Owners of Raithby—
,, ,, Elnod, the Saxon, 151
,, ,, William de Karilepho, 151
,, ,, Ivo Taillebois, 151
,, ,, Eudo, son of Spirewic, 152
,, ,, Robert de Willoughby, 152
,, ,, Littlebury family, 152, 153
,, ,, Brackenbury family, 153
,, ,, Rev. E. Rawnsley, 153
Ralph de Cromwell (Kirkby-on-Bain), 109
,, St. Valery (Ranby), 156
Ranby, an appanage of Tupholme Abbey, 156
,, Church described, 156, 157
,, Owners of Ranby—
,, ,, Godric, the Saxon, 156
,, ,, Odo, Bishop of Baieux, 156
,, ,, Ralph de St. Valery, 156
,, ,, Ralph de Cromwell, 156 note
,, ,, Otter family, 156, 157
Ranulph, Bishop of Durham, 54, 229
,, of Miningsby, 139
Ratcliffe, Sir John (Kirkby-on-Bain), 97
Rede, Robert, Justice of the King, 49
Registers of Edlington, 42, 43
,, Mavis Enderby, 50
,, Salmonby, 169
,, Sotby, 183
,, Stixwold, 199, 200
,, Winceby, 228
Rent of salt, 55
Revesby Abbey, cell at Mavis Enderby, 48
,, Abbot’s possessions, 162
,, Founded by William de Romara, 121
,, Church described, 166, 167, 168
,, Estates divided in 1552, 163
,, Meaning of name, 157 and note
,, Owners of—
,, ,, Ivo Taillebois, 159
,, ,, Roger de Romara, 159
,, ,, William, de Romara, Earl of Chester, 159, 160
,, ,, Charles Brandon, Duke of Suffolk, 163
,, ,, John Kersey, 163
,, ,, Lord Treasurer Burghley, 164
,, ,, Henry Howard, 164
,, ,, Sir Joseph Banks, 164
,, ,, J. Banks Stanhope, Esq., 164
,, ,, Right Honble. E. Stanhope, 164
,, Treasures at, 164, 165
,, Tumuli at, 164, 165
“Riddings,” Kirkby, 115
Ring, silver salt, bequest of, 124
Riveaux Abbey, Revesby lands given to, 124
Roads repaired by monks, a duty, 158
Robbery at Halstead Hall, 205
Roman Sepulture, 13
,, Urns, 56, 70
Rose, tenure by, 59
Runic stone, Marvis Enderby, 52
,, Miningsby, 142, 143
S.
Salmonby, church described, 172, 173
,, Burials many, in 1723–4, 169
,, Rectory held by William of Waynflete, 172
,, Owners of—
,, ,, Hugh de Abrincis, 170
,, ,, Geoffrey of Benigworth, 170
,, ,, Littlebury family, 170, 171
,, ,, Hamon Sutton, 171
,, ,, Sir Anthony Thorold, 172
,, ,, King, family of, Ashby de la Launde, 171
,, ,, Reeve, family of, Ashby de la Launde, 171
,, ,, Mrs. Nesbit Hamilton, Ogilvie, 173
,, Flint implements found, 216
Sackville, Anne, Lady, 60
St. John family, 33
St. Sythe, Revesby, 160
St. Valery, Richard de, 156
Salt pans, 133 and note
Salt rent, 155
Sapcote family, 125 and note
Saxon churches, 40, 55, 56, 57, 75, 121, 184, 210
Scales, Sir Thomas, 125
Scales, Isabella, 141
Scamblesby and Cawkwell—
,, church described, 174, 175, 176
,, Owners of—
,, ,, The Lady Lucia Thorold, 176
,, ,, Ivo Taillebois, 176
,, ,, Romara, Roger de, 176
,, ,, William de, 177
,, ,, Gilbert de Gaunt, 177
,, ,, Blondville family, 177
,, ,, De Lacy family, 177
,, ,, John of Gaunt, 177
,, ,, Priory of Spalding, 176, 178
,, ,, Bishop of Lincoln, 178
,, ,, Ecclesiastical Commissioners, 178
,, ,, Earl of Yarborough, 178
,, ,, Lill family, 178
,, ,, Bourne family, 178
,, ,, Kent, family of, curious bequests, 179, 180
,, Cawkwell, church demolished, 181
,, ,, Owners of—
,, ,, Lady Lucia, 180
,, ,, Ivo Taillebois, 180
,, ,, Sir Charles Cavendish, of Bolsover, 180
,, ,, Dukes of Newcastle, 180
,, ,, Earl of Oxford, 180
,, ,, Bentinck family, 180
,, ,, Duke of Portland, 180
Silkstone, Robert, monument to, 126
,, large estates of, 126
Silver casket and coins found, 151
,, “creeping,” 130
,, “salt,” bequest of, 124
“Sir” equivalent to “parson,” 111, note
Siward the Saxon, curious tradition of, 187 and note
Skepper, George, 125
,, Richard, buried in church, 123
,, ,, will of, 140
Skinner family, of Hareby, 91
,, of Old Bolingbroke, 91
,, Sir Vincent, 91, 121
Skipwith, Sir William, 50
Slaves, bequest of, 162, 170
Smith, J. Bainbridge, D.D., tablet at Baumber, 21
,, memorial window in Sotby, 185
Sotby, church described, 184, 185
,, register, 16 burials in 1728, 183
,, Owners of—
,, ,, Ulnod the Saxon, 182
,, ,, Odo, B shop of Baieux, 182
,, ,, Philip de Kyme, 182
,, ,, William de Kyme, 183
,, ,, Simon de Kyme, 183
,, ,, Gilbert de Umfraville, 182
,, ,, Sir Robert Dymok, knt., 183
,, ,, Robert Taillebois, 183
“Spice boxes” at East Kirkby, 130
Spurs, tenure by, 84
“Squint” window at Lusby, 136
Stanhope family, 114, 122, 165
,, Sir Richard, of Rampton, 109
Stennet, Jeffery, murder of, 119, 120
Stixwold, church described, 199, 200
,, field names at, 207
,, meaning of name, 185, 186
,, Owners of—
,, ,, Ulviet and Siward, Saxons, 187
,, ,, Waldin Brito, 188
,, ,, Alured, of Lincoln, 188
,, ,, Ivo Taillebois, 188
,, ,, Alan, of Lincoln, 190
,, ,, Roger de Romara, 189
,, ,, Ranulph, Earl of Chester, 189, 190
,, ,, Gilbert de Gant, 190
,, ,, Bec family, 190
,, ,, Pinso, “Dapifer,” 190
,, ,, Willoughby family, 190
,, ,, Robert de Haye, 190
,, ,, Ranulph de Meschines, 190
,, ,, Earl of Northumberland, 191
,, ,, Robert Dighton, 191
,, ,, Thimbleby family, 191
,, ,, Savile family, 192
,, ,, Sir John Coventry, 192
,, ,, Lord High Admiral Anson, 192, 193
,, ,, Edmund Turnor, Esq., 193
,, Halstead Hall owners—
,, ,, Roger de Stixwold, 201
,, ,, Sir Theobald de Stikeswald, 201
,, ,, Ranulph de Meschines, 202
,, ,, Welby family, 202
,, ,, Evington family, 203
,, ,, George Townshend, 203
,, ,, Kirkland Snowden, 203
,, ,, Gibbon family, 203
,, ,, Sir John Coventry, 203, 204
,, ,, Sir William Kyte, or Keate, 204
,, ,, Lord Anson, 204
,, ,, Edmund Turnor, Esq., 204
,, Robbery at Halstead Hall, 204, 205, 206
Stixwold Priory, founded by “the Lady Lucia,” 194
,, Benefactors—
,, ,, Galfred de Ezmondeys, 194 and note
,, ,, Alexander Creveceur, 194 and many others
,, Perquisites—
,, ,, “Assize of beer and bread,” 195
,, ,, “Lincoln farthings,” 195
,, ,, “Shot for wax,” 195
,, Possessions very large, 195
,, Prioress, the last, 196
,, Registers mention—
,, ,, “Artillery in charges,” “town muskets,” etc., 200
,, ,, Dog-whippers for church, 200
,, ,, “Dunkirkers,” 200
,, ,, “Dyke-reeve,” 200
,, Vicars, list of, 200, 201
,, stone coffins from, 199
,, stone with curious device, cross within circle, 198 and note
,, Cistercian pottery found, 207
Stourton, church described, 209, 210
,, benefice united to Baumber, 211
,, Owners of—
,, ,, Grinchel, the Saxon, 209
,, ,, Eudo, son of Spirewic, 208
,, ,, Robert de Novâ Villâ, 208
,, ,, Odo, Bishop of Baieux, 208
,, ,, William de Karilepho, 208
,, ,, Ilbert de Lacy, 208
,, ,, Dighton family, 209
,, ,, E. Clinton, Earl of Lincoln, 209
,, ,, Duke of Newcastle, 209
,, ,, W. H. Trafford, Esq., 209
,, ,, R. Harrison, Esq., 211
,, a Roman station, 209
,, “Stoup” farm, 211
Stoups, 25, 53, 154
Sweating sickness, 60, 149
T.
Tapestry, Baieux, 102, note
Tetford, 211
,, church described, 213
,, Saxon, formerly existing, 211
,, Owners—
,, ,, Elmer, Arnwi and Britnod, Saxons, 211
,, ,, Thomas (of Baieux) Archbishop of York, 212
,, ,, Gozelin, son of Lambert, 212
,, ,, De Hesele family, 212
,, ,, Cormayle family, 212
,, ,, Creveceur family, 212
,, ,, Braybœuf family, 212
,, ,, Barkworth family, 212
,, ,, Thimbleby family, 212
,, ,, Savile family, 212
,, ,, George Anton, Esq., 212
,, ,, Hussey family, 213
,, ,, Dymoke family, 213
,, ,, Sir H. A. H. Cholmeley, 213
,, ,, Meaburn Staniland Esq., 213
,, ,, Executors of G. Westerby, 213
,, Tetford witch, 214, 215
Thimbleby, imprisoned at Lincoln, cruel treatment of wife, 37
,, family, 212
Thorndyke, Francis, of Scamblesby, (Lincolnshire Gentry, 1634),
176
Thorold, of Bucknall, 150
,, Horncastle, Dean of, 161
,, of Horsington, 42
,, of Salmonby, 172
Touthby, John de, 36
Tyrwhitt, Sir William, 180
U.
Umfraville, Gilbert de, Earl of Angus, 59, 110, 182, 188, note
V.
Valery, St., Ralph de, 156
Vere, Earl of Oxford, 49
W.
Wac (Wake), Hugh, gives land to Revesby Abbey, 139
Waddingworth, 215
,, meaning, probable, of name, 217
,, church described, 221, 222
,, Dymoke monument, 221
,, Owners of—
,, ,, William de Karilepho, 218
,, ,, Eudo, son of Spirewic, 218
,, ,, Tupholme Abbey, 218
,, ,, Richard de Waddingworth, 218
,, ,, Roger Fulstow, 219
,, ,, Thomas Dighton, 219
,, ,, George Townshend, 220
,, ,, George Snowden, 220
,, ,, Edward Dymoke, 221
,, ,, Trafford Southwell family, 221
,, ,, Vyner family (of Gautby), 221
,, a native of, became Lord Mayor of London, 220
,, old armour in cottage, 222
,, highway robbery of resident in, 220
Wainflete, William of, Rector of Salmonby, 172
Walesby monument, 157
Ward, Rev. R. F., 172
Watermills, 12, 176
Webberley family, 128
Welby, Thomas, of Oxcombe, 147
,, large possessions of, 147
,, family, of Stixwold, 203
Welles, Sir Robert, 50, 77
Wentworth, Lord Strafford, 69
William de Barkworthe, 35
,, Wodehall, 42
Willoughby, arms of, 110
,, d’Eresby, 55
,, family of, 89, 108
,, and Kirkstead Abbey, 230, note
, of Parham, 4, 55
,, Robert de, 141, 152, 230
,, Sir William, 55, 138, 230
Willoughby, Rev. West, charity of, 118, 119
Winceby, church described, 227
,, a haunted boulder, 225
,, Owners of—
,, ,, Agemund the Saxon, 225
,, ,, Gozelin the Norman, 225
,, ,, Hugh de Abrincis, 225
,, ,, Gaunt family, 226
,, ,, Duke of Lancaster, 226
,, ,, C. Manwaring, Esq., 226
,, ,, Hill family, 226
,, register, curious entries, 228
,, fight, 228, 229, 230
Wispington, church described, 238, 239
,, Owners of—
,, ,, William de Karilepho, Bishop of Durham, 231
,, ,, Eudo, son of Spirewic, 232
,, ,, Kirkstead Abbey, 234
,, ,, Bec family, 233
,, Sir William Willoughby, 233
,, Robert Phillips, Esq., 235
,, Phillips Glover, Esq., 236
,, Turnor family, of Stoke Rochford, 237
,, anecdote of Vicar, R. Glover, 238, note
,, benefice formerly a rectory, 241
,, duel fought by Major Glover, 244
,, list of vicars, 242
,, Manor house, formerly a fine residence, 237
,, register, names “weaver” and “spinster,” 242, 243
,, spinning, a common occupation, 243, note
Witch of Tetford, 214, 215
Witham debouched at Wainfleet, 99
Woodstock, Edmund of, 65
Y.
Yarborough, Earl of, 178
FOOTNOTES.
Our website is not just a platform for buying books, but a bridge
connecting readers to the timeless values of culture and wisdom. With
an elegant, user-friendly interface and an intelligent search system,
we are committed to providing a quick and convenient shopping
experience. Additionally, our special promotions and home delivery
services ensure that you save time and fully enjoy the joy of reading.
ebookfinal.com