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 384 View editorView;
392 editorView = mLayoutInflater.inflate(newGroupEditorId, mRootView, false);
393 editorView.setTag(CURRENT_EDITOR_TAG);
398 editorView = mRootView.findViewWithTag(CURRENT_EDITOR_TAG);
399 if (editorView == null) {
404 mGroupNameView = (TextView) editorView.findViewById(R.id.group_name);
405 mAutoCompleteTextView = (AutoCompleteTextView) editorView.findViewById(
408 mListView = (ListView) editorView.findViewById(android.R.id.list);
412 if (editorView.findViewById(R.id.account_header) != null) {
414 ImageView accountIcon = (ImageView) editorView.findViewById(R.id.account_icon)
    [all...]

Completed in 252 milliseconds