1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
|
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.android.browser;
import android.app.SearchManager;
import android.content.ContentResolver;
import android.content.Context;
import android.database.Cursor;
import android.graphics.Color;
import android.graphics.drawable.Drawable;
import android.text.Editable;
import android.text.SpannableStringBuilder;
import android.text.TextWatcher;
import android.text.style.BackgroundColorSpan;
import android.util.AttributeSet;
import android.util.Log;
import android.view.ActionMode;
import android.view.KeyEvent;
import android.view.LayoutInflater;
import android.view.View;
import android.view.View.OnClickListener;
import android.view.View.OnFocusChangeListener;
import android.view.ViewGroup;
import android.view.inputmethod.InputMethodManager;
import android.widget.AutoCompleteTextView;
import android.widget.CursorAdapter;
import android.widget.Filterable;
import android.widget.ImageButton;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.TextView.OnEditorActionListener;
/**
* url/search input view
* handling suggestions
*/
public class UrlInputView extends AutoCompleteTextView
implements OnFocusChangeListener, OnClickListener, OnEditorActionListener {
private UrlInputListener mListener;
private InputMethodManager mInputManager;
private SuggestionsAdapter mAdapter;
private OnFocusChangeListener mWrappedFocusListener;
public UrlInputView(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
init(context);
}
public UrlInputView(Context context, AttributeSet attrs) {
super(context, attrs);
init(context);
}
public UrlInputView(Context context) {
super(context);
init(context);
}
private void init(Context ctx) {
mInputManager = (InputMethodManager) ctx.getSystemService(Context.INPUT_METHOD_SERVICE);
setOnEditorActionListener(this);
super.setOnFocusChangeListener(this);
final ContentResolver cr = mContext.getContentResolver();
mAdapter = new SuggestionsAdapter(mContext,
BrowserProvider.getBookmarksSuggestions(cr, null));
setAdapter(mAdapter);
setSelectAllOnFocus(false);
}
@Override
public ActionMode startActionMode(ActionMode.Callback callback) {
// suppress selection action mode
return null;
}
@Override
public void setOnFocusChangeListener(OnFocusChangeListener focusListener) {
mWrappedFocusListener = focusListener;
}
@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
finishInput(getText().toString());
return true;
}
@Override
public void onFocusChange(View v, boolean hasFocus) {
if (hasFocus) {
forceIme();
} else {
finishInput(null);
}
if (mWrappedFocusListener != null) {
mWrappedFocusListener.onFocusChange(v, hasFocus);
}
}
@Override
public void onClick(View view) {
if (view instanceof ImageButton) {
// user pressed edit search button
String text = mAdapter.getViewString((View)view.getParent());
mListener.onEdit(text);
} else {
// user selected dropdown item
String url = mAdapter.getViewString(view);
finishInput(url);
}
}
public void setUrlInputListener(UrlInputListener listener) {
mListener = listener;
}
public void forceIme() {
mInputManager.showSoftInput(this, 0);
}
private void finishInput(String url) {
this.dismissDropDown();
this.setSelection(0,0);
mInputManager.hideSoftInputFromWindow(getWindowToken(), 0);
if (url == null) {
mListener.onDismiss();
} else {
mListener.onAction(url);
}
}
@Override
public boolean onKeyPreIme(int keyCode, KeyEvent evt) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
// catch back key in order to do slightly more cleanup than usual
finishInput(null);
return true;
}
return super.onKeyPreIme(keyCode, evt);
}
interface UrlInputListener {
public void onDismiss();
public void onAction(String text);
public void onEdit(String text);
}
/**
* adapter used by suggestion dropdown
*/
class SuggestionsAdapter extends CursorAdapter implements Filterable {
private Cursor mLastCursor;
private ContentResolver mContent;
private int mIndexText1;
private int mIndexText2;
private int mIndexIcon;
public SuggestionsAdapter(Context context, Cursor c) {
super(context, c);
mContent = context.getContentResolver();
mIndexText1 = c.getColumnIndex(SearchManager.SUGGEST_COLUMN_TEXT_1);
mIndexText2 = c.getColumnIndex(SearchManager.SUGGEST_COLUMN_TEXT_2_URL);
mIndexIcon = c.getColumnIndex(SearchManager.SUGGEST_COLUMN_ICON_1);
}
public String getViewString(View view) {
TextView tv2 = (TextView) view.findViewById(android.R.id.text2);
if (tv2.getText().length() > 0) {
return tv2.getText().toString();
} else {
TextView tv1 = (TextView) view.findViewById(android.R.id.text1);
return tv1.getText().toString();
}
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
final LayoutInflater inflater = LayoutInflater.from(context);
final View view = inflater.inflate(
R.layout.url_dropdown_item, parent, false);
bindView(view, context, cursor);
return view;
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
TextView tv1 = (TextView) view.findViewById(android.R.id.text1);
TextView tv2 = (TextView) view.findViewById(android.R.id.text2);
ImageView ic1 = (ImageView) view.findViewById(R.id.icon1);
View ic2 = view.findViewById(R.id.icon2);
tv1.setText(cursor.getString(mIndexText1));
String url = cursor.getString(mIndexText2);
tv2.setText((url != null) ? url : "");
ic2.setOnClickListener(UrlInputView.this);
// assume an id
try {
int id = Integer.parseInt(cursor.getString(mIndexIcon));
Drawable d = context.getResources().getDrawable(id);
ic1.setImageDrawable(d);
ic2.setVisibility((id == R.drawable.ic_search_category_suggest)? View.VISIBLE : View.GONE);
} catch (NumberFormatException nfx) {
}
view.setOnClickListener(UrlInputView.this);
}
@Override
public String convertToString(Cursor cursor) {
return cursor.getString(mIndexText1);
}
@Override
public Cursor runQueryOnBackgroundThread(CharSequence constraint) {
if (getFilterQueryProvider() != null) {
return getFilterQueryProvider().runQuery(constraint);
}
mLastCursor = BrowserProvider.getBookmarksSuggestions(mContent,
(constraint != null) ? constraint.toString() : null);
return mLastCursor;
}
}
}
|