OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mUrlInput
(Results
1 - 3
of
3
) sorted by null
/packages/apps/Browser/src/com/android/browser/
NavigationBarBase.java
44
protected UrlInputView
mUrlInput
;
66
mUrlInput
= (UrlInputView) findViewById(R.id.url);
67
mUrlInput
.setUrlInputListener(this);
68
mUrlInput
.setOnFocusChangeListener(this);
69
mUrlInput
.setSelectAllOnFocus(true);
70
mUrlInput
.addTextChangedListener(this);
77
mUrlInput
.setController(mUiController);
102
if (hasFocus || view.isInTouchMode() ||
mUrlInput
.needsUpdate()) {
107
} else if (!
mUrlInput
.needsUpdate()) {
108
mUrlInput
.dismissDropDown()
[
all
...]
NavigationBarPhone.java
92
mUrlInput
.setContainer(this);
93
mUrlInput
.setStateListener(this);
119
onStateChanged(
mUrlInput
.getState());
129
mUrlInput
.setTag(title);
132
mUrlInput
.setText(R.string.new_tab);
134
mUrlInput
.setText(UrlUtils.stripUrl(title), false);
136
mUrlInput
.setSelection(0);
157
mUrlInput
.setText("");
204
if (view ==
mUrlInput
) {
205
if (hasFocus && !
mUrlInput
.getText().toString().equals(mUrlInput.getTag()))
[
all
...]
NavigationBarTablet.java
112
mUrlInput
.setContainer(mUrlContainer);
113
mUrlInput
.setStateListener(this);
120
if (
mUrlInput
.hasFocus()) {
190
if (TextUtils.isEmpty(
mUrlInput
.getText())) {
192
mUrlInput
.clearFocus();
195
mUrlInput
.setText("");
206
if (
mUrlInput
.hasFocus()) {
Completed in 25 milliseconds