Home
last modified time | relevance | path

Searched refs:editorView (Results 1 – 2 of 2) sorted by relevance

/sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
DEditors.java58 final View editorView = activity.getLayoutInflater().inflate(R.layout.editable_item, null); in newEditor() local
59 ((TextView) editorView.findViewById(R.id.caption)).setText(item.getCaption(activity)); in newEditor()
62 editorView.setVisibility(item.isVisible() ? View.VISIBLE : View.GONE); in newEditor()
65 editorView.setVisibility(item.isVisible() ? View.VISIBLE : View.GONE); in newEditor()
72 Runnable updater = editor.bindEditor(editorView, item, new Runnable() { in newEditor()
84 editorView.setTag(updater); in newEditor()
88 return editorView; in newEditor()
/sdk/apps/NotificationStudio/src/com/android/notificationstudio/
DNotificationStudioActivity.java131 View editorView = Editors.newEditor(this, items, item);
132 if (editorView != null)
133 items.addView(editorView);