0

我的选项菜单中有一个“搜索”按钮,它显示了一个带有搜索掩码的对话框。因此,当您单击“搜索”按钮时,它应该开始实际搜索。

我在 onCreateDialog 中尝试做的是:

Button search_button = (Button) dialog.findViewById(R.id.d_search_button);
search_button.setOnClickListener(new View.OnClickListener() {
  public void onClick(View v) {
    EditText text = (EditText) v.findViewById(R.id.d_search_text);
  }
});

哪个不起作用,因为文本为空,那么访问搜索文本的最佳方法是什么?

4

2 回答 2

4
final EditText text  = (EditText) v.findViewById(R.id.d_search_text);

   search_button.setOnClickListener(new View.OnClickListener() {
   public void onClick(View v) {

   String searchString = text.getText().toString();
    //do something
   }

});
于 2012-04-16T18:43:09.130 回答
2

制作EditText text最终的全局变量。并在设置事件时设置它,然后在事件触发时可用:

Button search_button = (Button) dialog.findViewById(R.id.d_search_button);
text = (EditText) v.findViewById(R.id.d_search_text);
search_button.setOnClickListener(new View.OnClickListener() {
  public void onClick(View v) {
  //get your text here
  }
});
于 2012-04-16T18:42:11.670 回答