Moved init() call of controller into onResume

This commit is contained in:
daniel oeh 2012-09-10 12:07:00 +02:00
parent ce7653fb8d
commit 67e97785e9
1 changed files with 5 additions and 0 deletions

View File

@ -142,6 +142,11 @@ public class ExternalPlayerFragment extends SherlockFragment {
}
};
butPlay.setOnClickListener(controller.newOnPlayButtonClickListener());
}
@Override
public void onResume() {
super.onResume();
controller.init();
}