Skip to content

Commit

Permalink
#20 resolve blocking list items issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Matthias Klass committed Apr 14, 2012
1 parent 0368438 commit 678620d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/li/klass/fhem/fragments/core/BaseFragment.java
Expand Up @@ -52,6 +52,14 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle sa
return contentView;
}

@Override
public void onResume() {
super.onResume();
if (contentView != null) {
contentView.clearFocus();
}
}

@Override
public void onPause() {
contentView = getView();
Expand Down

0 comments on commit 678620d

Please sign in to comment.