双屏HDMI输出编程

时间:2012-05-30 18:26:46

标签: android android-service android-hardware hdmi

在我的搜索中,我发现Android SDK不支持控制HDMI端口活动和处理HDMI输出,截至目前。虽然摩托罗拉等某些设备制造商(不知道是否还有其他设备制造商)提供了更好的控制API。下面是两个链接,其中双屏幕(非常适合我的要求)已被弃用。

motorola hdmi status api

motorola hdmi dual screen api

镜像是连接HDMI的默认行为,但是,我希望我的应用程序在HDMI输出上运行绑定服务。这将允许手机同时执行任何其他任务,而不会干扰我在HDMI屏幕上运行的服务。

有人可以建议我怎样才能解决这个问题?或者,如果任何其他制造商提供与摩托罗拉类似的灵活性?

1 个答案:

答案 0 :(得分:1)

像这样创建一个Service类。

public class MultiDisplayService extends Service {
    @Override
    public void onCreate() {
        super.onCreate();
        DisplayManager dm = (DisplayManager)getApplicationContext().getSystemService(DISPLAY_SERVICE);
        if (dm != null){
            Display dispArray[] = dm.getDisplays(DisplayManager.DISPLAY_CATEGORY_PRESENTATION);

        if (dispArray.length>0){
            Display display = dispArray[0];
            Log.e(TAG,"Service using display:"+display.getName());
            Context displayContext = getApplicationContext().createDisplayContext(display);
            WindowManager wm = (WindowManager)displayContext.getSystemService(WINDOW_SERVICE);
            View view = LayoutInflater.from(displayContext).inflate(R.layout.fragment_main,null);
            final WindowManager.LayoutParams params = new WindowManager.LayoutParams(
                    WindowManager.LayoutParams.FLAG_FULLSCREEN,
                    WindowManager.LayoutParams.FLAG_FULLSCREEN,
                    WindowManager.LayoutParams.TYPE_TOAST,
                    WindowManager.LayoutParams.FLAG_LAYOUT_IN_SCREEN,
                    PixelFormat.TRANSLUCENT);
            wm.addView(view, params);
        }
    }
}

启动该服务,可能在您的Application类中。

public class MultiDisplayApplication extends Application {
    @Override
    public void onCreate() {
        super.onCreate();
        startService(new Intent(this, MultiDisplayService.class));
    }
}

您可能需要基于DisplayManager.DisplayListener

的更复杂的显示添加/删除逻辑
mDisplayManager = (DisplayManager) this.getSystemService(Context.DISPLAY_SERVICE);
mDisplayManager.registerDisplayListener(this, null);

使用WindowManager.LayoutParams.TYPE_TOAST不需要权限,但看起来像是黑客。 WindowManager.LayoutParams.TYPE_SYSTEM_ALERT可能更合理,但需要

<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" />

在AndroidManifest中。