Hi!
My app was recently rejected, and one of the issues was MiniKeyboard rendering on SD screen. I used template from documentation, and it looks like this: http://prnt.sc/ej6r2z
If I don’t use template, it also looks shifted same way.
How to fix this? May be grid template image should have another size?
Layout is following
<?xml version="1.0" encoding="UTF-8"?>
<component name="Search" extends="Group" xsi:noNamespaceSchemaLocation="http://rokudev.roku.com/rokudev/schema/RokuSceneGraph.xsd">
<script type="text/brightscript" uri="pkg:/components/Search/Search.brs" />
<children>
<LayoutGroup layoutDirection="horiz" translation="[250, 30]" itemSpacings="[50]">
<LayoutGroup layoutDirection="vert" itemSpacings="[30]">
<Label text="Search">
<Font role="font" uri="pkg:/fonts/Bold.ttf" size="32" />
</Label>
<MiniKeyboard id="keyboard"
keyboardBitmapUri="pkg:/images/keyboard_$$RES$$.png"
/>
</LayoutGroup>
<Group>
<Label text="Searching…" id="loading" visible="false" translation="[0, 30]">
<Font role="font" uri="pkg:/fonts/Regular.ttf" size="20" />
</Label>
<MarkupList id="videos"
translation="[0, 30]"
itemComponentName="VideoItem1"
itemSize="[360, 202]"
focusBitmapUri="pkg:/images/focus_box.9.png"
focusFootprintBitmapUri="pkg:/images/focus_empty.9.png"
itemSpacing="[0, 20]"
numRows="3"
/>
</Group>
</LayoutGroup>
</children>
</component>
