<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Separate Display mode with Android 4.3 - iMX6 in i.MX Processors</title>
    <link>https://community.nxp.com/t5/i-MX-Processors/Separate-Display-mode-with-Android-4-3-iMX6/m-p/339419#M46408</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Josh, you can reference to this link: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-94354"&gt;https://community.freescale.com/docs/DOC-94354&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Sep 2014 01:28:52 GMT</pubDate>
    <dc:creator>qiang_li-mpu_se</dc:creator>
    <dc:date>2014-09-05T01:28:52Z</dc:date>
    <item>
      <title>Separate Display mode with Android 4.3 - iMX6</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Separate-Display-mode-with-Android-4-3-iMX6/m-p/339417#M46406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have build an Android Jelly Bean 4.3 image for my Congatec QMX6 board which is built on the iMX6 processor. I have 2 LVDS screens attached to the board, and have managed to set up the system to display on both screens by changing the bootargs (video=mxcfb0:dev=ldb,LDB-XGA,if=RGB24 video=mxcfb1:dev=ldb,LDB-XGA,if=RGB24). I seem to be operating in separate mode, as I can copy and image to the framebuffers /dev/graphics/fb0 and /dev/graphics/fb2 which will display on the the 2 screens respectively. However, Android does not seem to be aware of the two screen setup, and when interacting with the OS I get all activity duplicated on the two screens (they mirror each other). We want to have 2 apps running on the different screens concurrently. Do anyone know how this can be achieved (if it is even possible..)? &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2014 14:44:02 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Separate-Display-mode-with-Android-4-3-iMX6/m-p/339417#M46406</guid>
      <dc:creator>joshcollins</dc:creator>
      <dc:date>2014-09-04T14:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Separate Display mode with Android 4.3 - iMX6</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Separate-Display-mode-with-Android-4-3-iMX6/m-p/339418#M46407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are checking internally, we hope to provide a response as soon as possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Sep 2014 14:59:42 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Separate-Display-mode-with-Android-4-3-iMX6/m-p/339418#M46407</guid>
      <dc:creator>jamesbone</dc:creator>
      <dc:date>2014-09-04T14:59:42Z</dc:date>
    </item>
    <item>
      <title>Re: Separate Display mode with Android 4.3 - iMX6</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Separate-Display-mode-with-Android-4-3-iMX6/m-p/339419#M46408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Josh, you can reference to this link: &lt;A _jive_internal="true" href="https://community.nxp.com/docs/DOC-94354"&gt;https://community.freescale.com/docs/DOC-94354&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2014 01:28:52 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Separate-Display-mode-with-Android-4-3-iMX6/m-p/339419#M46408</guid>
      <dc:creator>qiang_li-mpu_se</dc:creator>
      <dc:date>2014-09-05T01:28:52Z</dc:date>
    </item>
    <item>
      <title>Re: Separate Display mode with Android 4.3 - iMX6</title>
      <link>https://community.nxp.com/t5/i-MX-Processors/Separate-Display-mode-with-Android-4-3-iMX6/m-p/339420#M46409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Qiang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the response. I was able to use the Presentation Java class mentioned in the link to display a different view on my second display without needing to make the changes to the kernel! So I have now succeeded in displaying different content on the 2 screens from one app, which is actually ideal for our needs. I was able to achieve this like so:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DisplayManager manager = (DisplayManager) getSystemService(DISPLAY_SERVICE);&lt;/P&gt;&lt;P&gt;Display[] displays = manager.getDisplays(DisplayManager.DISPLAY_CATEGORY_PRESENTATION);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if (displays.length &amp;gt; 0)&lt;/P&gt;&lt;P&gt;{&lt;/P&gt;&lt;P&gt;&amp;nbsp; Display display = displays[0];&lt;/P&gt;&lt;P&gt;&amp;nbsp; Presentation presentation = new Presentation(this, display);&lt;/P&gt;&lt;P&gt;&amp;nbsp; TextView view = new TextView(this);&lt;/P&gt;&lt;P&gt;&amp;nbsp; view.setText("Hello world!");&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; presentation.addContentView(view, new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));&lt;/P&gt;&lt;P&gt;&amp;nbsp; presentation.show();&lt;/P&gt;&lt;P&gt;}&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for the help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Josh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Sep 2014 08:17:32 GMT</pubDate>
      <guid>https://community.nxp.com/t5/i-MX-Processors/Separate-Display-mode-with-Android-4-3-iMX6/m-p/339420#M46409</guid>
      <dc:creator>joshcollins</dc:creator>
      <dc:date>2014-09-05T08:17:32Z</dc:date>
    </item>
  </channel>
</rss>

