HomeSort by relevance Sort by last modified time
    Searched defs:editorView (Results 1 - 2 of 2) sorted by null

  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
Editors.java 58 final View editorView = activity.getLayoutInflater().inflate(R.layout.editable_item, null);
59 ((TextView) editorView.findViewById(R.id.caption)).setText(item.getCaption(activity));
62 editorView.setVisibility(item.isVisible() ? View.VISIBLE : View.GONE);
65 editorView.setVisibility(item.isVisible() ? View.VISIBLE : View.GONE);
72 Runnable updater = editor.bindEditor(editorView, item, new Runnable() {
84 editorView.setTag(updater);
88 return editorView;
  /packages/apps/Contacts/src/com/android/contacts/group/
GroupEditorFragment.java 382 View editorView;
390 editorView = mLayoutInflater.inflate(newGroupEditorId, mRootView, false);
391 editorView.setTag(CURRENT_EDITOR_TAG);
396 editorView = mRootView.findViewWithTag(CURRENT_EDITOR_TAG);
397 if (editorView == null) {
402 mGroupNameView = (TextView) editorView.findViewById(R.id.group_name);
403 mAutoCompleteTextView = (AutoCompleteTextView) editorView.findViewById(
406 mListView = (ListView) editorView.findViewById(android.R.id.list);
410 if (editorView.findViewById(R.id.account_header) != null) {
412 ImageView accountIcon = (ImageView) editorView.findViewById(R.id.account_icon)
    [all...]

Completed in 63 milliseconds