gpt4 book ai didi

android-studio - 在android studio中嵌入人行横道

转载 作者:行者123 更新时间:2023-12-03 15:52:32 25 4
gpt4 key购买 nike

我是 android 编程和 android studio 的新手。
我为我的项目研究了人行横道嵌入 API 并尝试将其嵌入到 android studio 中。但我无法成功。甚至我也不知道如何嵌入具有 gradle 文件的 API。

也许gradle系统有问题?
简而言之,如何使用 android studio 一步一步地将 crosswalk-webview 嵌入到我的项目中?
非常感谢你。

最佳答案

以下:https://diego.org/2015/01/07/embedding-crosswalk-in-android-studio/

  • 在应用文件夹中打开 AndroidStudio 到项目 View 编辑 build.gradle:
    repositories {
    maven {
    url 'https://download.01.org/crosswalk/releases/crosswalk/android/maven2'}}


    dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    compile 'com.android.support:appcompat-v7:21.0.3'
    compile 'org.xwalk:xwalk_core_library:10.39.235.15'}
  • 同步项目。
  • 在布局 xml 中添加此 View 。
    <org.xwalk.core.XWalkView
    android:id="@+id/xwalkWebView"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#000000"
    />
  • 在事件或片段中:
    import org.xwalk.core.XWalkPreferences;
    import org.xwalk.core.XWalkView;
  • 在 onCreate 中:
    XWalkView xWalkWebView=(XWalkView)findViewById(R.id.xwalkWebView);
    xWalkWebView.clearCache(true);
    xWalkWebView.load("http://...", null);
    // turn on debugging
    XWalkPreferences.setValue(XWalkPreferences.REMOTE_DEBUGGING, true);

  • 在使用开箱即用的 WebView 失败后,我在 android 4.3 和 4.4 上的 XWalkView 中成功使用了 WebRTC。我认为 android 5 Lollipop 与最新的 Chromium 不相上下。

    关于android-studio - 在android studio中嵌入人行横道,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28781803/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com