3
在具有導航抽屜的Android活動中清除焦點的最佳方式是什麼?明確關注顯示導航抽屜時的內容
問題是,當用戶選擇了文本框時,如果您打開導航抽屜的後退事件,它不會被抽屜使用,並且導航返回一步,打開抽屜。
現在我解決了這個問題,但是我想知道是否有人使用另一個解決方案,我不需要使用ActionBarDrawerToggle事件。
/** Called when a drawer has settled in a completely open state. */
public void onDrawerOpened(View drawerView) {
View window = findViewById(R.id.content_frame);
window.clearFocus();
}
您是否設法爲此找到一個乾淨的解決方案? – gunar