2014-12-27, 02:15
In looking at some of the other skins, they have an android apps section on the home screen that shows all the installed android apps.
Is there a way to somehow add this to the left menu on xeebo?
I was looking at the confluence skin and found this code in the home.xml.
Can I simply paste this into xeebo's home.xml file (think it is called includes_home_alt.xml in my xeebo and have it work or is it not that easy? I did try it but it would not load the xml file and I had to delete the skin file to get it back.
Maybe I can add a sub men under extras to do it? any tips or help than can do it?
Thanks.
I am able to favorite the android apps in confluence custom mod, then just click on the home screen favorites and see them in xeebo, but would prefer to have a separate section that pulls the android apps without having to switch skins and then favorite them.
Is it possible to add more items to the left menu? Like can I copy one of the existing buttons and then modify the code to add one?
below is the confluence code. can I modify say the weather one not he xeebo home and change the code on click to ActivateWindow(Programs,androidapp://sources/apps/,return)
<item id="9999">
<label>ANDROID APPS</label>
<onclick>ActivateWindow(Programs,androidapp://sources/apps/,return)</onclick>
<icon>-</icon>
<thumb>-</thumb>
<visible>System.Platform.Android + !Skin.HasSetting(HomeMenuNoAppsButton)</visible>
</item>
<item id="1">
<label>31957</label>
<onclick condition="!System.Platform.Android | !Skin.HasSetting(HomeMenuNoAppsButton)">ActivateWindow(Programs,Addons,return)</onclick>
<onclick condition="System.Platform.Android + Skin.HasSetting(HomeMenuNoAppsButton)">ActivateWindow(Programs)</onclick>
<icon>-</icon>
<thumb>-</thumb>
<visible>!Skin.HasSetting(HomeMenuNoProgramsButton)</visible>
</item>
Is there a way to somehow add this to the left menu on xeebo?
I was looking at the confluence skin and found this code in the home.xml.
Can I simply paste this into xeebo's home.xml file (think it is called includes_home_alt.xml in my xeebo and have it work or is it not that easy? I did try it but it would not load the xml file and I had to delete the skin file to get it back.
Maybe I can add a sub men under extras to do it? any tips or help than can do it?
Thanks.
I am able to favorite the android apps in confluence custom mod, then just click on the home screen favorites and see them in xeebo, but would prefer to have a separate section that pulls the android apps without having to switch skins and then favorite them.
Is it possible to add more items to the left menu? Like can I copy one of the existing buttons and then modify the code to add one?
below is the confluence code. can I modify say the weather one not he xeebo home and change the code on click to ActivateWindow(Programs,androidapp://sources/apps/,return)
<item id="9999">
<label>ANDROID APPS</label>
<onclick>ActivateWindow(Programs,androidapp://sources/apps/,return)</onclick>
<icon>-</icon>
<thumb>-</thumb>
<visible>System.Platform.Android + !Skin.HasSetting(HomeMenuNoAppsButton)</visible>
</item>
<item id="1">
<label>31957</label>
<onclick condition="!System.Platform.Android | !Skin.HasSetting(HomeMenuNoAppsButton)">ActivateWindow(Programs,Addons,return)</onclick>
<onclick condition="System.Platform.Android + Skin.HasSetting(HomeMenuNoAppsButton)">ActivateWindow(Programs)</onclick>
<icon>-</icon>
<thumb>-</thumb>
<visible>!Skin.HasSetting(HomeMenuNoProgramsButton)</visible>
</item>