首页
学习
活动
专区
圈层
工具
发布
社区首页 >问答首页 >MediaRouter -将内容显示到第二个屏幕

MediaRouter -将内容显示到第二个屏幕
EN

Stack Overflow用户
提问于 2017-12-13 11:45:35
回答 1查看 1.1K关注 0票数 1

我是Android的新手,尽我最大的努力学习--请不要扔石头。

感谢@commonsguy的出色示例:https://github.com/commonsguy/cw-omnibus/blob/master/Presentation/Simple/app/src/main/java/com/commonsware/android/preso/simple/MainActivity.java

我可以显示一个网站的次要显示(我的情况下,一个Miracast外部监视器)。

  1. 目前该网站显示,但我不能与它互动(滚动,向下,点击链接,输入用户名,密码等)。有什么方法可以让这个区域成为输入吗?(将硬件、键盘和鼠标连接在一起,并希望能够使用这些来导航页面)

添加了Why is Android WebView refusing user input?的逻辑,但也没有帮助。

代码语言:javascript
复制
/**
 Copyright (c) 2013 CommonsWare, LLC
 Licensed under the Apache License, Version 2.0 (the "License"); you may not
 use this file except in compliance with the License. You may obtain a copy
 of the License at http://www.apache.org/licenses/LICENSE-2.0. Unless required
 by applicable law or agreed to in writing, software distributed under the
 License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
 OF ANY KIND, either express or implied. See the License for the specific
 language governing permissions and limitations under the License.

 Covered in detail in the book _The Busy Coder's Guide to Android Development_
 https://commonsware.com/Android
 */

package com.example.danielsz.simpledisplay;

import android.annotation.TargetApi;
import android.app.Activity;
import android.app.Presentation;
import android.content.Context;
import android.media.MediaRouter;
import android.media.MediaRouter.RouteInfo;
import android.media.MediaRouter.SimpleCallback;
import android.os.Build;
import android.os.Bundle;
import android.util.Log;
import android.view.Display;
import android.view.MotionEvent;
import android.view.View;
import android.webkit.WebView;

public class MainActivity extends Activity {
    MediaRouter router=null;
    Presentation preso=null;
    SimpleCallback cb=null;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setContentView(R.layout.activity_main);
    }

    @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
    @Override
    protected void onStart() {
        super.onStart();

        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
            if (cb==null) {
                cb=new RouteCallback();
                router=(MediaRouter)getSystemService(MEDIA_ROUTER_SERVICE);
            }

            handleRoute(router.getSelectedRoute(MediaRouter.ROUTE_TYPE_LIVE_VIDEO));
            router.addCallback(MediaRouter.ROUTE_TYPE_LIVE_VIDEO, cb);
        }
    }

    @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
    @Override
    protected void onStop() {
        if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN_MR1) {
            clearPreso();

            if (router != null) {
                router.removeCallback(cb);
            }
        }

        super.onStop();
    }

    @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
    private void handleRoute(RouteInfo route) {
        if (route == null) {
            clearPreso();
        }
        else {
            Display display=route.getPresentationDisplay();

            if (route.isEnabled() && display != null) {
                if (preso == null) {
                    showPreso(route);
                    Log.d(getClass().getSimpleName(), "enabled route");
                }
                else if (preso.getDisplay().getDisplayId() != display.getDisplayId()) {
                    clearPreso();
                    showPreso(route);
                    Log.d(getClass().getSimpleName(), "switched route");
                }
                else {
                    // no-op: should already be set
                }
            }
            else {
                clearPreso();
                Log.d(getClass().getSimpleName(), "disabled route");
            }
        }
    }

    @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
    private void clearPreso() {
        if (preso != null) {
            preso.dismiss();
            preso=null;
        }
    }

    @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
    private void showPreso(RouteInfo route) {
        preso=new SimplePresentation(this, route.getPresentationDisplay());
        preso.show();
    }

    @TargetApi(Build.VERSION_CODES.JELLY_BEAN)
    private class RouteCallback extends SimpleCallback {
        @Override
        public void onRoutePresentationDisplayChanged(MediaRouter router,
                                                      RouteInfo route) {
            handleRoute(route);
        }
    }

    @TargetApi(Build.VERSION_CODES.JELLY_BEAN_MR1)
    private class SimplePresentation extends Presentation {
        SimplePresentation(Context ctxt, Display display) {
            super(ctxt, display);
        }

        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);

            WebView wv=new WebView(getContext());


            wv.getSettings().setJavaScriptEnabled(true);
            wv.loadUrl("https://ctxtsprodeme.xendesktop.net/");

            setContentView(wv);
        }
    }
}

非常感谢。丹尼尔

EN

回答 1

Stack Overflow用户

回答已采纳

发布于 2017-12-13 12:13:55

有什么方法可以让这个区域成为输入吗?

不,对不起。外部显示仅在标准Android中显示。您可以在主显示器(例如,您的手机或平板电脑)上收集输入,并使用它影响外部显示器上的内容(例如,调用pageDown()WebView上的pageUp() ),但仅此而已。

票数 0
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/47792213

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档