Hi Storch,
Can you check this, we have implemented same scenario but on click of event we are disabling the Master Page. Here is what I have done.
App view :
<SplitApp id="idAppControl" />
<Image press="hideMaster" src="icon/white-home-icon.png"/>
controller:
hideMaster: function (e) {
var oSplitApp = this.getView().byId("idAppControl");
var oMasterNav = oSplitApp.getAggregation("_navMaster");
oMasterNav.setVisible(!oMasterNav.getVisible());
},
Hope this will help you with your requirement.
Thank you,
Rohini