HomeSort by relevance Sort by last modified time
    Searched full:notepad (Results 1 - 25 of 71) sorted by null

1 2 3

  /development/tutorials/NotepadCodeLab/Notepadv1/res/values/
strings.xml 3 <string name="app_name">Notepad v1</string>
  /development/tutorials/NotepadCodeLab/Notepadv1Solution/res/values/
strings.xml 3 <string name="app_name">Notepad v1</string>
  /development/samples/NotePad/tests/
AndroidManifest.xml 20 adb shell am instrument -w com.example.android.notepad.tests/android.test.InstrumentationTestRunner
24 'com.example.android.notepad' allows the test code to use declarations from the application
28 package="com.example.android.notepad.tests"
41 The target Android package 'com.example.android.notepad' is loaded along with the
42 test package 'com.example.android.notepad.tests'. Android then starts the class
46 android:targetPackage="com.example.android.notepad"
47 android:label="Tests for com.example.android.notepad"/>
  /development/samples/NotePad/
Android.mk 9 LOCAL_PACKAGE_NAME := NotePad
_index.html 13 notepad code that's used for the <a href="../../../guide/tutorials/notepad/index.html">Notepad Tutorial</a>.
AndroidManifest.xml 23 package="com.example.android.notepad" >
31 android:authorities="com.google.provider.NotePad"
65 <action android:name="com.android.notepad.action.EDIT_NOTE" />
96 <action android:name="com.android.notepad.action.EDIT_TITLE" />
  /development/tutorials/NotepadCodeLab/Notepadv2/res/values/
strings.xml 3 <string name="app_name">Notepad v2</string>
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/res/values/
strings.xml 3 <string name="app_name">Notepad v2</string>
  /development/tutorials/NotepadCodeLab/Notepadv3/res/values/
strings.xml 3 <string name="app_name">Notepad v3</string>
  /development/tutorials/NotepadCodeLab/Notepadv3Solution/res/values/
strings.xml 3 <string name="app_name">Notepad v3</string>
  /frameworks/base/docs/html/training/notepad/
notepad-extra-credit.jd 1 page.title=Notepad Extra Credit
2 parent.title=Notepad Tutorial
16 [<a href="notepad-ex1.html">Exercise 1</a>]
17 [<a href="notepad-ex2.html">Exercise 2</a>]
18 [<a href="notepad-ex3.html">Exercise 3</a>]
20 [<a href="notepad-extra-credit.html" style="color:#BBB;">Extra Credit</a>]
36 <p>Now start the notepad demo in debug mode:</p>
index.jd 1 page.title=Notepad Tutorial
6 <p>This tutorial on writing a notepad application gives you a &quot;hands-on&quot; introduction
9 developing a simple notepad application and provides concrete examples of how to
85 <th width="120"><a href="{@docRoot}training/notepad/notepad-ex1.html">Exercise
93 <th><a href="{@docRoot}training/notepad/notepad-ex2.html">Exercise 2</a></th>
102 <th><a href="{@docRoot}training/notepad/notepad-ex3.html">Exercise 3</a></th>
108 <th><a href="{@docRoot}training/notepad/notepad-extra-credit.html">Extr
    [all...]
notepad-index.jd 1 page.title=Notepad Tutorial
8 developing a simple notepad application and provides concrete examples of how to
12 <p>The tutorial presents the notepad application development as a set of
22 of a notepad application, in the
23 <a href="{@docRoot}samples/NotePad/index.html">Sample Code</a> documentation. </p>
127 <li>This tutorial draws from the full Notepad application included in the
130 it is highly recommended that you take a closer look at this version of the Notepad
138 make it look like a lined notepad.</li>
  /development/samples/NotePad/src/com/example/android/notepad/
NotePadProvider.java 17 package com.example.android.notepad;
19 import com.example.android.notepad.NotePad;
82 NotePad.Notes._ID, // Projection position 0, the note's id
83 NotePad.Notes.COLUMN_NAME_NOTE, // Projection position 1, the note's content
84 NotePad.Notes.COLUMN_NAME_TITLE, // Projection position 2, the note's title
123 sUriMatcher.addURI(NotePad.AUTHORITY, "notes", NOTES);
127 sUriMatcher.addURI(NotePad.AUTHORITY, "notes/#", NOTE_ID);
131 sUriMatcher.addURI(NotePad.AUTHORITY, "live_folders/notes", LIVE_FOLDER_NOTES);
142 sNotesProjectionMap.put(NotePad.Notes._ID, NotePad.Notes._ID)
    [all...]
NotePad.java 17 package com.example.android.notepad;
28 public final class NotePad {
29 public static final String AUTHORITY = "com.google.provider.NotePad";
32 private NotePad() {
NotesLiveFolder.java 17 package com.example.android.notepad;
19 import com.example.android.notepad.NotePad;
66 liveFolderIntent.setData(NotePad.Notes.LIVE_FOLDER_URI);
94 = new Intent(Intent.ACTION_EDIT, NotePad.Notes.CONTENT_ID_URI_PATTERN);
  /development/samples/NotePad/tests/src/com/example/android/notepad/
NotePadProviderTest.java 17 package com.example.android.notepad;
49 Uri.withAppendedPath(NotePad.Notes.CONTENT_URI, "invalid");
101 super(NotePadProvider.class, NotePad.AUTHORITY);
151 NotePad.Notes.TABLE_NAME, // the table name for the insert
152 NotePad.Notes.COLUMN_NAME_TITLE, // column set to null if empty values map
165 String mimeType = mMockResolver.getType(NotePad.Notes.CONTENT_URI);
166 assertEquals(NotePad.Notes.CONTENT_TYPE, mimeType);
169 mimeType = mMockResolver.getType(NotePad.Notes.LIVE_FOLDER_URI);
170 assertEquals(NotePad.Notes.CONTENT_TYPE, mimeType);
173 Uri noteIdUri = ContentUris.withAppendedId(NotePad.Notes.CONTENT_ID_URI_BASE, 1)
    [all...]
NotePadActivityTest.java 17 package com.example.android.notepad;
20 import com.example.android.notepad.NotesList;
  /external/libvorbis/win32/VS2005/
README 14 2. Open libogg.vsprops with a text editor (even notepad.exe
  /external/libvorbis/win32/VS2008/
README 14 2. Open libogg.vsprops with a text editor (even notepad.exe
  /development/apps/launchperf/src/com/android/launchperf/
NotePadLaunchPerformance.java 26 * Instrumentation class for Notepad launch performance testing.
40 mIntent.setClassName(getTargetContext(), "com.android.notepad.NotesList");
  /build/tools/signapk/test/
run 3 package := NotePad.apk
  /development/samples/NotePad/res/layout/
note_editor.xml 17 class="com.example.android.notepad.NoteEditor$LinedEditText"
  /development/samples/NotePad/res/values/
strings.xml 18 <string name="app_name">NotePad</string>
  /external/smali/
README.md 9 - [#smali on freenode](http://webchat.freenode.net/?channels=smali) - Free free to drop by and ask a question. Don't expect an instant response, but if you hang around someone will respond. Think of it more in terms of.. multi-player notepad.

Completed in 186 milliseconds

1 2 3