blob: 3a7cc87caef6c9e0c249cbb00da5b27542d34524 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
2 * Copyright (C) 2006 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.widget;
18
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080019import android.content.Context;
Gilles Debunnef5c6eff2010-02-09 19:08:36 -080020import android.text.Editable;
21import android.text.Selection;
22import android.text.Spannable;
23import android.text.TextUtils;
24import android.text.method.ArrowKeyMovementMethod;
25import android.text.method.MovementMethod;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import android.util.AttributeSet;
Svetoslav Ganov8a78fd42012-01-17 14:36:46 -080027import android.view.accessibility.AccessibilityEvent;
28import android.view.accessibility.AccessibilityNodeInfo;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029
30
31/*
32 * This is supposed to be a *very* thin veneer over TextView.
33 * Do not make any changes here that do anything that a TextView
34 * with a key listener and a movement method wouldn't do!
35 */
36
37/**
38 * EditText is a thin veneer over TextView that configures itself
39 * to be editable.
Scott Main41ec6532010-08-19 16:57:07 -070040 *
Scott Main4c359b72012-07-24 15:51:27 -070041 * <p>See the <a href="{@docRoot}guide/topics/ui/controls/text.html">Text Fields</a>
42 * guide.</p>
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080043 * <p>
44 * <b>XML attributes</b>
45 * <p>
46 * See {@link android.R.styleable#EditText EditText Attributes},
47 * {@link android.R.styleable#TextView TextView Attributes},
48 * {@link android.R.styleable#View View Attributes}
49 */
Philip Milneab104ba2013-04-19 03:53:38 +000050public class EditText extends TextView {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080051 public EditText(Context context) {
52 this(context, null);
53 }
54
55 public EditText(Context context, AttributeSet attrs) {
56 this(context, attrs, com.android.internal.R.attr.editTextStyle);
57 }
58
Alan Viverette617feb92013-09-09 18:09:13 -070059 public EditText(Context context, AttributeSet attrs, int defStyleAttr) {
60 this(context, attrs, defStyleAttr, 0);
61 }
62
63 public EditText(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
64 super(context, attrs, defStyleAttr, defStyleRes);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080065 }
66
67 @Override
68 protected boolean getDefaultEditable() {
69 return true;
70 }
71
72 @Override
73 protected MovementMethod getDefaultMovementMethod() {
74 return ArrowKeyMovementMethod.getInstance();
75 }
76
77 @Override
78 public Editable getText() {
79 return (Editable) super.getText();
80 }
81
82 @Override
83 public void setText(CharSequence text, BufferType type) {
84 super.setText(text, BufferType.EDITABLE);
85 }
86
87 /**
88 * Convenience for {@link Selection#setSelection(Spannable, int, int)}.
89 */
90 public void setSelection(int start, int stop) {
91 Selection.setSelection(getText(), start, stop);
92 }
93
94 /**
95 * Convenience for {@link Selection#setSelection(Spannable, int)}.
96 */
97 public void setSelection(int index) {
98 Selection.setSelection(getText(), index);
99 }
100
101 /**
102 * Convenience for {@link Selection#selectAll}.
103 */
104 public void selectAll() {
105 Selection.selectAll(getText());
106 }
107
108 /**
109 * Convenience for {@link Selection#extendSelection}.
110 */
111 public void extendSelection(int index) {
112 Selection.extendSelection(getText(), index);
113 }
114
115 @Override
116 public void setEllipsize(TextUtils.TruncateAt ellipsis) {
117 if (ellipsis == TextUtils.TruncateAt.MARQUEE) {
118 throw new IllegalArgumentException("EditText cannot use the ellipsize mode "
119 + "TextUtils.TruncateAt.MARQUEE");
120 }
121 super.setEllipsize(ellipsis);
122 }
Svetoslav Ganov8a78fd42012-01-17 14:36:46 -0800123
124 @Override
125 public void onInitializeAccessibilityEvent(AccessibilityEvent event) {
126 super.onInitializeAccessibilityEvent(event);
127 event.setClassName(EditText.class.getName());
128 }
129
130 @Override
131 public void onInitializeAccessibilityNodeInfo(AccessibilityNodeInfo info) {
132 super.onInitializeAccessibilityNodeInfo(info);
133 info.setClassName(EditText.class.getName());
134 }
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800135}