OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:NotesDbAdapter
(Results
1 - 14
of
14
) sorted by null
/development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
Notepadv2.java
39
private
NotesDbAdapter
mDbHelper;
47
mDbHelper = new
NotesDbAdapter
(this);
59
String[] from = new String[]{
NotesDbAdapter
.KEY_TITLE};
118
i.putExtra(
NotesDbAdapter
.KEY_ROWID, id);
119
i.putExtra(
NotesDbAdapter
.KEY_TITLE, c.getString(
120
c.getColumnIndexOrThrow(
NotesDbAdapter
.KEY_TITLE)));
121
i.putExtra(
NotesDbAdapter
.KEY_BODY, c.getString(
122
c.getColumnIndexOrThrow(
NotesDbAdapter
.KEY_BODY)));
132
String title = extras.getString(
NotesDbAdapter
.KEY_TITLE);
133
String body = extras.getString(
NotesDbAdapter
.KEY_BODY)
[
all
...]
NoteEdit.java
46
String title = extras.getString(
NotesDbAdapter
.KEY_TITLE);
47
String body = extras.getString(
NotesDbAdapter
.KEY_BODY);
48
mRowId = extras.getLong(
NotesDbAdapter
.KEY_ROWID);
63
bundle.putString(
NotesDbAdapter
.KEY_TITLE, mTitleText.getText().toString());
64
bundle.putString(
NotesDbAdapter
.KEY_BODY, mBodyText.getText().toString());
66
bundle.putLong(
NotesDbAdapter
.KEY_ROWID, mRowId);
NotesDbAdapter.java
37
public class
NotesDbAdapter
{
43
private static final String TAG = "
NotesDbAdapter
";
87
public
NotesDbAdapter
(Context ctx) {
100
public
NotesDbAdapter
open() throws SQLException {
/development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
Notepadv3.java
39
private
NotesDbAdapter
mDbHelper;
47
mDbHelper = new
NotesDbAdapter
(this);
59
String[] from = new String[]{
NotesDbAdapter
.KEY_TITLE};
118
i.putExtra(
NotesDbAdapter
.KEY_ROWID, id);
119
i.putExtra(
NotesDbAdapter
.KEY_TITLE, c.getString(
120
c.getColumnIndexOrThrow(
NotesDbAdapter
.KEY_TITLE)));
121
i.putExtra(
NotesDbAdapter
.KEY_BODY, c.getString(
122
c.getColumnIndexOrThrow(
NotesDbAdapter
.KEY_BODY)));
132
String title = extras.getString(
NotesDbAdapter
.KEY_TITLE);
133
String body = extras.getString(
NotesDbAdapter
.KEY_BODY)
[
all
...]
NoteEdit.java
46
String title = extras.getString(
NotesDbAdapter
.KEY_TITLE);
47
String body = extras.getString(
NotesDbAdapter
.KEY_BODY);
48
mRowId = extras.getLong(
NotesDbAdapter
.KEY_ROWID);
63
bundle.putString(
NotesDbAdapter
.KEY_TITLE, mTitleText.getText().toString());
64
bundle.putString(
NotesDbAdapter
.KEY_BODY, mBodyText.getText().toString());
66
bundle.putLong(
NotesDbAdapter
.KEY_ROWID, mRowId);
NotesDbAdapter.java
37
public class
NotesDbAdapter
{
43
private static final String TAG = "
NotesDbAdapter
";
87
public
NotesDbAdapter
(Context ctx) {
100
public
NotesDbAdapter
open() throws SQLException {
/development/tutorials/NotepadCodeLab/Notepadv3Solution/src/com/android/demo/notepad3/
NoteEdit.java
31
private
NotesDbAdapter
mDbHelper;
36
mDbHelper = new
NotesDbAdapter
(this);
48
(Long) savedInstanceState.getSerializable(
NotesDbAdapter
.KEY_ROWID);
51
mRowId = extras != null ? extras.getLong(
NotesDbAdapter
.KEY_ROWID)
72
note.getColumnIndexOrThrow(
NotesDbAdapter
.KEY_TITLE)));
74
note.getColumnIndexOrThrow(
NotesDbAdapter
.KEY_BODY)));
82
outState.putSerializable(
NotesDbAdapter
.KEY_ROWID, mRowId);
Notepadv3.java
39
private
NotesDbAdapter
mDbHelper;
46
mDbHelper = new
NotesDbAdapter
(this);
57
String[] from = new String[]{
NotesDbAdapter
.KEY_TITLE};
114
i.putExtra(
NotesDbAdapter
.KEY_ROWID, id);
NotesDbAdapter.java
37
public class
NotesDbAdapter
{
43
private static final String TAG = "
NotesDbAdapter
";
87
public
NotesDbAdapter
(Context ctx) {
100
public
NotesDbAdapter
open() throws SQLException {
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
Notepadv1.java
30
private
NotesDbAdapter
mDbHelper;
37
mDbHelper = new
NotesDbAdapter
(this);
70
String[] from = new String[] {
NotesDbAdapter
.KEY_TITLE };
NotesDbAdapter.java
37
public class
NotesDbAdapter
{
43
private static final String TAG = "
NotesDbAdapter
";
87
public
NotesDbAdapter
(Context ctx) {
100
public
NotesDbAdapter
open() throws SQLException {
/development/tutorials/NotepadCodeLab/Notepadv2/src/com/android/demo/notepad2/
Notepadv2.java
38
private
NotesDbAdapter
mDbHelper;
46
mDbHelper = new
NotesDbAdapter
(this);
57
String[] from = new String[]{
NotesDbAdapter
.KEY_TITLE};
NotesDbAdapter.java
37
public class
NotesDbAdapter
{
43
private static final String TAG = "
NotesDbAdapter
";
87
public
NotesDbAdapter
(Context ctx) {
100
public
NotesDbAdapter
open() throws SQLException {
/development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
NotesDbAdapter.java
37
public class
NotesDbAdapter
{
43
private static final String TAG = "
NotesDbAdapter
";
87
public
NotesDbAdapter
(Context ctx) {
100
public
NotesDbAdapter
open() throws SQLException {
Completed in 54 milliseconds