OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:editorview
(Results
1 - 7
of
7
) 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
;
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
NavigatorOverlayController.js
33
* @param {!WebInspector.View}
editorView
35
WebInspector.NavigatorOverlayController = function(parentSidebarView, navigatorView,
editorView
)
39
this._editorView =
editorView
;
SourcesPanel.js
88
this.
editorView
= new WebInspector.SidebarView(WebInspector.SidebarView.SidebarPosition.Start, "scriptsPanelNavigatorSidebarWidth", initialNavigatorWidth);
89
this.
editorView
.element.id = "scripts-editor-split-view";
90
this.
editorView
.element.tabIndex = 0;
92
this.
editorView
.setSidebarElementConstraints(Preferences.minScriptsSidebarWidth);
93
this.
editorView
.setMainElementConstraints(minimumViewsContainerWidthPercent);
94
this.
editorView
.show(this.splitView.mainElement);
97
this._navigator.view.show(this.
editorView
.sidebarElement);
101
this.
editorView
.mainElement.classList.add("vbox");
102
this.
editorView
.sidebarElement.classList.add("vbox");
113
this._navigatorController = new WebInspector.NavigatorOverlayController(this.
editorView
, this._navigator.view, this._editorContainer.view)
[
all
...]
/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
...]
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/
NotificationStudioActivity.java
131
View
editorView
= Editors.newEditor(this, items, item);
132
if (
editorView
!= null)
133
items.addView(
editorView
);
/packages/apps/Contacts/src/com/android/contacts/editor/
KindSectionView.java
183
* Creates an
EditorView
for the given entry. This function must be used while constructing
184
* the views corresponding to the the object-model. The resulting
EditorView
is also added
/packages/apps/Contacts/src/com/android/contacts/activities/
ConfirmAddDetailActivity.java
709
* Creates an
EditorView
for the given entry. This function must be used while constructing
710
* the views corresponding to the the object-model. The resulting
EditorView
is also added
[
all
...]
Completed in 2206 milliseconds