Searched defs:title (Results 1 - 25 of 38) sorted by relevance

12

/development/samples/SoftKeyboard/src/com/android/inputmethodcommon/
H A DInputMethodSettingsInterface.java33 * Sets the title for the input method settings category with a resource ID.
34 * @param resId The resource ID of the title.
39 * Sets the title for the input method settings category with a CharSequence.
40 * @param title The title for this preference.
42 public void setInputMethodSettingsCategoryTitle(CharSequence title); argument
45 * Sets the title for the input method enabler preference for launching subtype enabler with a
47 * @param resId The resource ID of the title.
52 * Sets the title for the input method enabler preference for launching subtype enabler with a
54 * @param title Th
56 setSubtypeEnablerTitle(CharSequence title) argument
[all...]
H A DInputMethodSettingsFragment.java57 public void setInputMethodSettingsCategoryTitle(CharSequence title) { argument
58 mSettings.setInputMethodSettingsCategoryTitle(title);
73 public void setSubtypeEnablerTitle(CharSequence title) { argument
74 mSettings.setSubtypeEnablerTitle(title);
H A DInputMethodSettingsImpl.java69 final CharSequence title = getSubtypeEnablerTitle(context);
73 if (!TextUtils.isEmpty(title)) {
74 intent.putExtra(Intent.EXTRA_TITLE, title);
128 public void setInputMethodSettingsCategoryTitle(CharSequence title) { argument
130 mInputMethodSettingsCategoryTitle = title;
147 public void setSubtypeEnablerTitle(CharSequence title) { argument
149 mSubtypeEnablerTitle = title;
/development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
H A DActionBarActivity.java79 protected void onTitleChanged(CharSequence title, int color) { argument
80 mActionBarHelper.onTitleChanged(title, color);
81 super.onTitleChanged(title, color);
H A DActionBarHelper.java80 protected void onTitleChanged(CharSequence title, int color) { argument
H A DActionBarHelperBase.java82 * Sets up the compatibility action bar with the given title.
101 // Add title text
139 protected void onTitleChanged(CharSequence title, int color) { argument
142 titleView.setText(title);
/development/samples/ApiDemos/src/com/example/android/apis/app/
H A DFragmentAlertDialog.java76 public static MyAlertDialogFragment newInstance(int title) { argument
79 args.putInt("title", title);
86 int title = getArguments().getInt("title");
90 .setTitle(title)
/development/samples/Home/src/com/example/android/home/
H A DApplicationInfo.java24 * Represents a launchable application. An application is made of a name (or title), an intent
31 CharSequence title; field in class:ApplicationInfo
71 return title.equals(that.title) &&
79 result = (title != null ? title.hashCode() : 0);
/development/samples/MySampleRss/src/com/example/codelab/rssexample/
H A DRssItem.java24 public String title; field in class:RssItem
29 public RssItem(String url, String title){ argument
31 this.title = title;
35 return title;
/development/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentAlertDialogSupport.java77 public static MyAlertDialogFragment newInstance(int title) { argument
80 args.putInt("title", title);
87 int title = getArguments().getInt("title");
91 .setTitle(title)
/development/samples/VoicemailProviderDemo/src/com/example/android/voicemail/common/ui/
H A DDialogHelper.java28 public void showErrorMessageDialog(String title, Exception exception); argument
H A DDialogHelperImpl.java73 private static final String KEY_TITLE = "title";
87 public void showErrorMessageDialog(String title, Exception exception) { argument
89 bundle.putString(KEY_TITLE, title);
100 String title = args.getString(KEY_TITLE);
102 .setTitle(title)
/development/samples/RSSReader/src/com/example/android/rssreader/
H A DRssItem.java21 * title, link, description.
34 public RssItem(CharSequence title, CharSequence link, CharSequence description) { argument
35 mTitle = title;
60 public void setTitle(CharSequence title) { argument
61 mTitle = title;
/development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
H A DMainActivity.java33 * This class describes an individual sample (the sample title, and the activity class that
37 private CharSequence title; field in class:MainActivity.Sample
42 this.title = getResources().getString(titleResId);
47 return title.toString();
/development/samples/training/network-usage/src/com/example/android/networkusage/
H A DStackOverflowXmlParser.java69 // It includes the data members "title," "link," and "summary."
71 public final String title; field in class:StackOverflowXmlParser.Entry
75 private Entry(String title, String summary, String link) { argument
76 this.title = title;
82 // Parses the contents of an entry. If it encounters a title, summary, or link tag, hands them
87 String title = null;
95 if (name.equals("title")) {
96 title = readTitle(parser);
105 return new Entry(title, summar
[all...]
/development/samples/ApiDemos/src/com/example/android/apis/view/
H A DList4.java118 public SpeechView(Context context, String title, String words) { argument
127 mTitle.setText(title);
138 * Convenience method to set the title of a SpeechView
140 public void setTitle(String title) { argument
141 mTitle.setText(title);
H A DList6.java367 public SpeechView(Context context, String title, String dialogue, boolean expanded) { argument
376 mTitle.setText(title);
387 * Convenience method to set the title of a SpeechView
389 public void setTitle(String title) { argument
390 mTitle.setText(title);
/development/samples/RandomMusicPlayer/src/com/example/android/musicplayer/
H A DMusicRetriever.java33 * resolver). After that, it's ready to retrieve a random song, with its title and URI, upon
78 // retrieve the indices of the columns where the ID, title, etc. of the song are
115 String title; field in class:MusicRetriever.Item
119 public Item(long id, String artist, String title, String album, long duration) { argument
122 this.title = title;
136 return title;
/development/samples/Wiktionary/src/com/example/android/wiktionary/
H A DSimpleWikiHelper.java52 * the desired page title after escaping it as needed.
131 * @param title The exact title of the Wiktionary page requested.
137 public static String getPageContent(String title, boolean expandTemplates) argument
139 // Encode page title and expand templates if requested
140 String encodedTitle = Uri.encode(title);
/development/samples/WiktionarySimple/src/com/example/android/simplewiktionary/
H A DSimpleWikiHelper.java59 * the desired page title after escaping it as needed.
138 * @param title The exact title of the Wiktionary page requested.
144 public static String getPageContent(String title, boolean expandTemplates) argument
146 // Encode page title and expand templates if requested
147 String encodedTitle = Uri.encode(title);
/development/samples/HoneycombGallery/src/com/example/android/hcgallery/
H A DMainActivity.java345 public static MyDialogFragment newInstance(String title) { argument
348 args.putString("text", title);
/development/samples/NotePad/src/com/example/android/notepad/
H A DNoteEditor.java221 // Switches the state to EDIT so the title can be modified.
244 * Moves to the first note in the list, sets an appropriate title for the action chosen by
257 // Requery in case something changed while paused (such as the title)
267 // Modifies the window title for the Activity according to the current Activity state.
269 // Set the title of the Activity to include the note title
271 String title = mCursor.getString(colTitleIndex);
273 String text = String.format(res.getString(R.string.title_edit), title);
275 // Sets the title to "create" for inserts
470 String title
524 updateNote(String text, String title) argument
[all...]
/development/samples/NotePad/tests/src/com/example/android/notepad/
H A DNotePadProviderTest.java396 * The pipe should contain three lines: The note's title, an empty line, and the note's
410 // note title as the first line retrieved from the pipe.
411 assertEquals(TEST_NOTES[0].title, inputData[0]);
481 TEST_PROJECTION, // get the title, note, and mod date columns
501 TEST_PROJECTION, // get the title, note, and mod date columns
502 SELECTION_COLUMNS, // select on the title column
504 SORT_ORDER // sort ascending on the title column
515 // the title column (column 0) in the current record of the cursor
547 NotePad.Notes.COLUMN_NAME_TITLE}; // The note's title
562 null // default sort, by ascending title
795 String title; field in class:NotePadProviderTest.NoteInfo
[all...]
/development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
H A DNotesDbAdapter.java39 public static final String KEY_TITLE = "title";
52 + "title text not null, body text not null);";
112 * Create a new note using the title and body provided. If the note is
116 * @param title the title of the note
120 public long createNote(String title, String body) { argument
122 initialValues.put(KEY_TITLE, title);
173 * specified using the rowId, and it is altered to use the title and body
177 * @param title value to set note title t
181 updateNote(long rowId, String title, String body) argument
[all...]
/development/tutorials/NotepadCodeLab/Notepadv1Solution/src/com/android/demo/notepad1/
H A DNotesDbAdapter.java39 public static final String KEY_TITLE = "title";
52 + "title text not null, body text not null);";
112 * Create a new note using the title and body provided. If the note is
116 * @param title the title of the note
120 public long createNote(String title, String body) { argument
122 initialValues.put(KEY_TITLE, title);
173 * specified using the rowId, and it is altered to use the title and body
177 * @param title value to set note title t
181 updateNote(long rowId, String title, String body) argument
[all...]

Completed in 826 milliseconds

12