我是android编程的新手,所以请原谅。这是我的第一个应用程序,它的目的是查找用户在搜索小部件中键入的字符串,放在 sd 卡上的 txt 中。我几乎完成了它,但我的最后一个目标是添加一个功能,允许用户在搜索后决定他想要获得多少答案。所以我添加了一个 EditText 字段,我可以在其中输入一个数字。这就是我的问题:我无法检索在 EditText 字段中输入的数据,我也不知道为什么。这是我的 onCreate。
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
EditText editText = (EditText) findViewById(R.id.enter_a_number); // I think this is the firs part of my problem...
Intent intent = getIntent();
if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
String query = intent.getStringExtra(SearchManager.QUERY);
int number = Integer.valueOf(editText.getText().toString()); // ...and that is the second
do_my_search(query, number);
}
}
和 do_my_search 方法:
public void do_my_search(String query, int number) {
//Find the directory for the SD Card using the API
File sdcard = Environment.getExternalStorageDirectory();
//Get the text file
File file = new File(sdcard,"fragment.txt");
try {
BufferedReader br = new BufferedReader(new InputStreamReader(new FileInputStream(file), "windows-1250"),8192);
String line;
String[] text = new String[5];
int i = 0;
TextView textView1 = (TextView)findViewById(R.id.textView1);
textView1.setMovementMethod(new ScrollingMovementMethod());
while ((line = br.readLine()) != null) {
if(line.toLowerCase().contains(query.toLowerCase()) == true && i < number){
text[i] = i + 1 + "." + line + "\n";
i++;
}
}
for(i = 0; i < number ; i ++){
if(text[i] == null)
text[i] = "";
}
StringBuilder builder = new StringBuilder();
for (String value : text) {
builder.append(value);
}
String final_string = builder.toString();
Spannable wordtoSpan = new SpannableString(final_string);
for(i = 0;; ){
int k = final_string.indexOf(query,i);
if (k == -1)
break;
wordtoSpan.setSpan(new ForegroundColorSpan(Color.RED), k, k + query.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
i = k + query.length();
}
textView1.setText(wordtoSpan);
br.close();
}
catch (IOException e) {
//You'll need to add proper error handling here
}
}
除文本字段外的所有内容都可以正常工作。我浏览了一些类似的线程,我认为我的问题是变量编号在我在字段中输入任何内容之前获取值,它总是选择默认文本,即使它显示不同的内容。我知道我的代码中可能会有一些错误,但现在我有兴趣解决这个特定问题:我应该怎么做才能让我的变量号选择我在编辑文本字段中键入的值?是否可以不添加按钮或 TextWatcher?