OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:editorView
(Results
1 - 4
of
4
) 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
...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/sources/
SourcesPanel.js
81
this.
editorView
= new WebInspector.SplitView(true, false, "sourcesPanelNavigatorSplitViewState", initialNavigatorWidth);
82
this.
editorView
.enableShowModeSaving();
83
this.
editorView
.element.id = "scripts-editor-split-view";
84
this.
editorView
.element.tabIndex = 0;
85
this.
editorView
.show(this._splitView.mainElement());
89
this._navigator.view.show(this.
editorView
.sidebarElement());
102
this._sourcesView.show(this.
editorView
.mainElement());
235
this._sourcesView.show(this.
editorView
.mainElement());
[
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
);
Completed in 231 milliseconds