使chromecast远程显示无效

时间:2015-10-27 11:00:48

标签: android google-cast invalidation

我目前正在尝试通过远程显示屏对chromecast进行绘图。我可以将自定义视图投射到chromecast。但是,当我开始在第二个屏幕上绘图时,第一个屏幕上没有任何内容(chromecast)。现在我认为这是因为我制作了两个自定义视图实例。所以我的下一个计划是包括我的秒屏,希望它在我开始绘图时自动刷新,这没有发生。如何强制远程显示无效(无法访问课程)?

第一次屏幕布局:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:id="@+id/myframelayout">

     <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/castscreen">

        <include layout="@layout/second_screen_layout"/>
    </RelativeLayout>
</FrameLayout>

1 个答案:

答案 0 :(得分:1)

应用程序逻辑可以同步移动和远程显示视图。 Remote Display API没有任何同步视图的机制。如果您使用的是OpenGL,则可以在移动和远程显示视图之间共享渲染器实例。