我做了一些研究,并结合了几个解决方案的提示。
首先,我使用LayoutInflater.from(Context)
了而不是Context.LAYOUT_INFLATER_SERVICE
(尽管这似乎不是问题)。第二,我用的onSearchRequest()
方法。
这是结果:
/**
* Whether the search bar is visible or not.
*/
private boolean searchState = false;
/**
* The View loaded from the search_bar.xml layout.
*/
private View searchView;
/**
* This method is overridden from the Activity class, enabling you to define events when the hardware search button is pressed.
*
* @return Returns true if search launched, and false if activity blocks it.
*/
public boolean onSearchRequested() {
// Toggle the search state.
this.searchState = !this.searchState;
// Find the main layout
ViewGroup viewGroup = (ViewGroup) findViewById(R.id.layout_main);
// If the search button is pressed and the state has been toggled on:
if (this.searchState) {
LayoutInflater factory = LayoutInflater.from(this.activity);
// Load the search_bar.xml layout file and save it to a class attribute for later use.
this.searchView = factory.inflate(R.layout.search_bar, null);
// Add the search_bar to the main layout (on position 0, so it will be at the top of the screen if the viewGroup is a vertically oriented LinearLayout).
viewGroup.addView(this.searchView, 0);
}
// Else, if the search state is false, we assume that it was on and the search_bar was loaded. Now we remove the search_bar from the main view.
else {
viewGroup.removeView(this.searchView);
}
return false;
}
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}