embed crosswalk in android studio

前端 未结 5 1525
有刺的猬
有刺的猬 2020-12-01 07:12

I\'m new about android programming and android studio. I researched crosswalk embed API for my project and tried to embed it in android studio. But I couldn\'t be succesfull

5条回答
  •  天涯浪人
    2020-12-01 07:55

    This is needed as well to load images via html5, as hinted here

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        if (mXwalkView != null) {
            mXwalkView.onActivityResult(requestCode, resultCode, data);
        }
    }
    

提交回复
热议问题