AndroidUI: implemented search in the bag of words

This commit is contained in:
krasimir
2010-06-10 13:38:15 +00:00
parent d6f32b3bcd
commit 07da5a43c9
4 changed files with 138 additions and 34 deletions

View File

@@ -10,4 +10,4 @@
# Indicates whether an apk should be generated for each density. # Indicates whether an apk should be generated for each density.
split.density=false split.density=false
# Project target. # Project target.
target=android-2 target=android-4

View File

@@ -1,5 +1,6 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/main_view"
android:orientation="vertical" android:orientation="vertical"
android:layout_width="fill_parent" android:layout_width="fill_parent"
android:layout_height="fill_parent" android:layout_height="fill_parent"
@@ -7,9 +8,9 @@
> >
<se.fnord.android.layout.PredicateLayout <se.fnord.android.layout.PredicateLayout
android:id="@+id/magnets_sentence" android:id="@+id/magnets_sentence"
android:layout_width="fill_parent" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:padding="5dip"/> android:padding="5dip"/>
<View <View
android:layout_height="8dip" android:layout_height="8dip"

View File

@@ -4,8 +4,10 @@ import java.util.Arrays;
import android.os.*; import android.os.*;
import android.app.*; import android.app.*;
import android.content.Context; import android.content.*;
import android.text.*;
import android.view.*; import android.view.*;
import android.view.inputmethod.*;
import android.widget.*; import android.widget.*;
import android.graphics.*; import android.graphics.*;
import se.fnord.android.layout.*; import se.fnord.android.layout.*;
@@ -16,6 +18,9 @@ public class FridgeMagnets extends Activity {
"how","go","Gothenburg","London","rakia","wine", "how","go","Gothenburg","London","rakia","wine",
"whisky","man","woman","boy","girl","to"}; "whisky","man","woman","boy","girl","to"};
private Controller controller = new Controller();
private EditText searchBox = null;
@Override @Override
public void onCreate(Bundle savedInstanceState) { public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState); super.onCreate(savedInstanceState);
@@ -23,36 +28,124 @@ public class FridgeMagnets extends Activity {
Arrays.sort(words); Arrays.sort(words);
PredicateLayout l = (PredicateLayout) findViewById(R.id.magnets_bag); refreshBagOfWords(null);
for (int i = 0; i < words.length; i++) {
Magnet t = new Magnet(this); View main = findViewById(R.id.main_view);
t.setText(words[i]); main.setFocusableInTouchMode(true);
l.addView(t, new PredicateLayout.LayoutParams(3, 3)); main.setOnKeyListener(controller);
}
} }
private static class Magnet extends TextView { private void applyMagnetStyles(TextView view) {
public Magnet(Context context) { view.setTextColor(Color.BLACK);
super(context); view.setBackgroundColor(Color.WHITE);
setTextColor(Color.BLACK); view.setSingleLine(true);
setBackgroundColor(Color.WHITE); view.setPadding(2, 2, 2, 2);
setSingleLine(true); view.setClickable(true);
setPadding(2, 2, 2, 2); }
setClickable(true);
private void refreshBagOfWords(String prefix) {
PredicateLayout l = (PredicateLayout) findViewById(R.id.magnets_bag);
l.removeAllViews();
for (int i = 0; i < words.length; i++) {
if (prefix != null && !words[i].startsWith(prefix))
continue;
TextView t = new TextView(this);
t.setText(words[i]);
t.setOnTouchListener(controller);
applyMagnetStyles(t);
l.addView(t, new PredicateLayout.LayoutParams(3, 3));
}
}
private void addWord(String word) {
PredicateLayout l = (PredicateLayout) findViewById(R.id.magnets_sentence);
TextView t = new TextView(this);
t.setText(word);
applyMagnetStyles(t);
l.addView(t, new PredicateLayout.LayoutParams(3, 3));
}
private void showSearchBox() {
if (searchBox != null)
return;
PredicateLayout l = (PredicateLayout) findViewById(R.id.magnets_sentence);
EditText edit = new EditText(this);
edit.setInputType(InputType.TYPE_CLASS_TEXT |
InputType.TYPE_TEXT_FLAG_AUTO_COMPLETE);
edit.addTextChangedListener(controller);
edit.setOnKeyListener(controller);
applyMagnetStyles(edit);
l.addView(edit, new PredicateLayout.LayoutParams(
ViewGroup.LayoutParams.WRAP_CONTENT,
ViewGroup.LayoutParams.WRAP_CONTENT,
3, 3));
edit.requestFocus();
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.showSoftInput(edit, 0);
searchBox = edit;
}
private void hideSearchBox() {
if (searchBox == null)
return;
InputMethodManager imm = (InputMethodManager) getSystemService(Context.INPUT_METHOD_SERVICE);
imm.hideSoftInputFromWindow(searchBox.getWindowToken(), 0);
PredicateLayout l = (PredicateLayout) findViewById(R.id.magnets_sentence);
l.removeView(searchBox);
refreshBagOfWords(null);
searchBox = null;
}
private class Controller implements View.OnKeyListener, View.OnTouchListener, TextWatcher {
@Override
public boolean onKey(View view, int keyCode, KeyEvent event) {
if (event.getAction() == KeyEvent.ACTION_DOWN) {
if (searchBox == null && keyCode == KeyEvent.KEYCODE_SEARCH) {
showSearchBox();
return true;
} else if (searchBox != null && keyCode == KeyEvent.KEYCODE_SEARCH) {
hideSearchBox();
return true;
}
}
return false;
}
@Override
public boolean onTouch(View view, MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_UP) {
hideSearchBox();
addWord(((TextView) view).getText().toString());
return true;
}
return false;
}
@Override
public void afterTextChanged(Editable arg0) {
} }
@Override @Override
public boolean onTouchEvent(MotionEvent event) { public void beforeTextChanged(CharSequence arg0, int arg1, int arg2, int arg3) {
if (event.getAction() == MotionEvent.ACTION_UP) { }
Activity activity = (Activity) getContext();
PredicateLayout l = (PredicateLayout) activity.findViewById(R.id.magnets_sentence);
Magnet t = new Magnet(activity); @Override
t.setText(getText()); public void onTextChanged(CharSequence text, int arg1, int arg2, int arg3) {
l.addView(t, new PredicateLayout.LayoutParams(3, 3)); refreshBagOfWords(text.toString());
} }
return super.onTouchEvent(event);
}
} }
} }

View File

@@ -29,7 +29,17 @@ public class PredicateLayout extends ViewGroup {
* @param vertical_spacing Pixels between items, vertically * @param vertical_spacing Pixels between items, vertically
*/ */
public LayoutParams(int horizontal_spacing, int vertical_spacing) { public LayoutParams(int horizontal_spacing, int vertical_spacing) {
super(0, 0); this(0, 0, horizontal_spacing, vertical_spacing);
}
/**
* @param width
* @param height
* @param horizontal_spacing Pixels between items, horizontally
* @param vertical_spacing Pixels between items, vertically
*/
public LayoutParams(int width, int height, int horizontal_spacing, int vertical_spacing) {
super(width, height);
this.horizontal_spacing = horizontal_spacing; this.horizontal_spacing = horizontal_spacing;
this.vertical_spacing = vertical_spacing; this.vertical_spacing = vertical_spacing;
} }