我是靠谱客的博主 精明发箍,最近开发中收集的这篇文章主要介绍android hdmi开关,Android – 禁用HDMI,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

最好的方法是使用与DisplayID相关的命令集,允许您监听要添加,更改或删除的显示.

这是一个快速的例子,它是如何改变你的显示/ HDMI:

private final DisplayManager.DisplayListener mDisplayListener =

new DisplayManager.DisplayListener() {

@Override

public void onDisplayAdded(int displayId) {

Log.d(TAG, "Display #" + displayId + " added.");

mDisplayListAdapter.updateContents();

}

@Override

public void onDisplayChanged(int displayId) {

Log.d(TAG, "Display #" + displayId + " changed.");

mDisplayListAdapter.updateContents();

}

@Override

public void onDisplayRemoved(int displayId) {

Log.d(TAG, "Display #" + displayId + " removed.");

mDisplayListAdapter.updateContents();

}

};

此处如何让您的所有HDMI /显示设备可用于连接:

protected void onResume() {

// Be sure to call the super class.

super.onResume();

// Update our list of displays on resume.

mDisplayListAdapter.updateContents();

// Restore presentations from before the activity was paused.

final int numDisplays = mDisplayListAdapter.getCount();

for (int i = 0; i < numDisplays; i++) {

final Display display = mDisplayListAdapter.getItem(i);

final PresentationContents contents =

mSavedPresentationContents.get(display.getDisplayId());

if (contents != null) {

showPresentation(display, contents);

}

}

mSavedPresentationContents.clear();

// Register to receive events from the display manager.

mDisplayManager.registerDisplayListener(mDisplayListener, null);

}

//unregisterDisplayListener(DisplayManager.DisplayListener);

@Override

protected void onPause() {

// Be sure to call the super class.

super.onPause();

// Unregister from the display manager.

mDisplayManager.unregisterDisplayListener(mDisplayListener);

// Dismiss all of our presentations but remember their contents.

Log.d(TAG, "Activity is being paused. Dismissing all active presentation.");

for (int i = 0; i < mActivePresentations.size(); i++) {

DemoPresentation presentation = mActivePresentations.valueAt(i);

int displayId = mActivePresentations.keyAt(i);

mSavedPresentationContents.put(displayId, presentation.mContents);

presentation.dismiss();

}

mActivePresentations.clear();

}

关于“无效”HDMI输出,如果最终发生,只需重画.这应该解决任何“invalidate”,万一发生.

您可能会发现有用的进一步检查documentation.

最后

以上就是精明发箍为你收集整理的android hdmi开关,Android – 禁用HDMI的全部内容,希望文章能够帮你解决android hdmi开关,Android – 禁用HDMI所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(66)

评论列表共有 0 条评论

立即
投稿
返回
顶部