Kodi Community Forum
View mode videos, always in list mode - - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Mimic-LR (https://forum.kodi.tv/forumdisplay.php?fid=218)
+---- Thread: View mode videos, always in list mode - (/showthread.php?tid=335917)



View mode videos, always in list mode - - arielf - 2018-09-27

I do not speak English, I am using a translator. My query is as follows: I have kodi leia + the skin imitates and works all vien, except when I use the addon youtube or netflix, it always shows me the list of videos in list format, I select for example to see them in infowall mode, when I close the addon and re-open it, I list the videos in list mode again. Is it a bug? or how can I do to define a view mode and not change it?
Thank you


RE: View mode videos, always in list mode - - joselbcn33 - 2018-11-16

If you wish to change a view mode to a anyone you prefer you have to edit the xml file in kodi>skin mimic>1080i>myVideoNav.xml in that file you will see  the code as follows:
Quote:<?xml version="1.0" encoding="UTF-8"?>
<window>
    <defaultcontrol always="true">50</defaultcontrol>
    <menucontrol>9051</menucontrol>
    <allowoverlay>true</allowoverlay>
    <views>50,52,507,51,57,59,500,501,502,504,505,509,520,55</views>
    <onload>SetProperty(Window.HasSettings,True,home)</onload>
    <onload>ClearProperty(MediaMenu,Home)</onload>
    <onunload>ClearProperty(MediaMenu,Home)</onunload>
    <onunload>ClearProperty(Window.HasSettings,Home)</onunload>

below that code  between lines 29 and 56 you will see the views included and the id of the view:
Quote: <control type="group">
            <include>View_50_List</include>
            <!-- view id = 50 -->
            <include>View_52_Thumbnail</include>
            <!-- view id = 52 -->
            <include>VideoInfoWall</include>
            <!-- view id = 51 -->
            <include>View_55_LowPanel</include>
            <!-- view id = 55 -->
            <include>ShiftFixedList</include>
            <!-- view id = 57 -->
            <include>View_59_Fanart</include>
            <!-- view id = 59 -->
            <include>VideoWall</include>
            <!-- view id = 500 -->
            <include>AddonWall</include>
            <!-- view id = 520 -->
            <include>VideoLowList</include>
            <!-- view id = 501 -->
            <include>VideoEpisode</include>
            <!-- view id = 502 -->
            <include>View_504_Gallery</include>
            <!-- view id = 504 -->
            <include>View_505_Panel</include>
            <!-- view id = 505 -->
            <include>View_507_BigList</include>
            <!-- view id = 507 -->
            <include>View_509_Wall</include>



RE: View mode videos, always in list mode - - joselbcn33 - 2018-11-16

Just change the order of the views in line:

<views>50,52,507,51,57,59,500,501,502,504,505,509,520,55</views>

for example the infowall view has the 51 id so if you wish to open all your library and netflix  movies and tv shows just change 51 id to the beginning of the line as follows:

<views>51,50,52,507,57,59,500,501,502,504,505,509,520,55</views>

and done all your videos will be displayed in infowall view