under android framework i have these files :
file: android.widget.Editor
package android.widget;
/**
* Helper class used by TextView to handle editable text views.
*
* @hide
*/
public class Editor {
....
}
and
file: android.widget.TextView
package android.widget;
@RemoteView
public class TextView extends View implements ViewTreeObserver.OnPreDrawListener {
}
but i can't understand why in my unit i can do
- import android.widget.TextView
but i can't do
- import android.widget.Editor
how can i access the unit android.widget.Editor ?