HomeSort by relevance Sort by last modified time
    Searched refs:Editors (Results 1 - 7 of 7) sorted by null

  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/editor/
BooleanEditor.java 26 import com.android.notificationstudio.editor.Editors.Editor;
TextEditor.java 26 import com.android.notificationstudio.editor.Editors.Editor;
DropDownEditor.java 29 import com.android.notificationstudio.editor.Editors.Editor;
Editors.java 32 public class Editors implements EditableItemConstants {
38 private static final Map<Integer, Editor> EDITORS = editors();
41 private static Map<Integer, Editor> editors() { method in class:Editors
42 Map<Integer, Editor> editors = new HashMap<Integer, Editor>(); local
43 editors.put(TYPE_RESOURCE_ID, new IconEditor());
44 editors.put(TYPE_TEXT, new TextEditor());
45 editors.put(TYPE_INT, new IntEditor());
47 editors.put(TYPE_BOOLEAN, new BooleanEditor());
48 editors.put(TYPE_DROP_DOWN, new DropDownEditor())
    [all...]
DateTimeEditor.java 35 import com.android.notificationstudio.editor.Editors.Editor;
IconEditor.java 32 import com.android.notificationstudio.editor.Editors.Editor;
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/
NotificationStudioActivity.java 48 import com.android.notificationstudio.editor.Editors;
94 final View e = findViewById(R.id.editors);
109 // limit the max height for preview, leave room for editors + soft keyboard
131 View editorView = Editors.newEditor(this, items, item);
223 // hides the soft keyboard more aggressively when leaving text editors

Completed in 72 milliseconds