小编Mih*_*hev的帖子

Xamarin Forms WebView open external link

I have a webview inside my application and when an external link is clicked (that in normal browser is open in a new tab), I can't then go back to my website.

It is possible when a new tab is open to have the menu closed that tab like Gmail do ?

在此处输入图片说明

目标是,无论何时点击链接,用户都可以选择查看内容的选项,例如,点击链接会建议打开 youtube 应用程序或谷歌浏览器。目的是出现谷歌浏​​览器选项

或者你有什么建议来处理这种情况?

xamarin.ios xamarin.android xamarin

5
推荐指数
1
解决办法
2219
查看次数

标头名称改造 kotlin 中的 3 处出现意外的字符 0x20

@Headers("key : aW5kaWhvbWU", "Content-Type : application/json")
@GET("product_cat/5")
fun getProduct(
): Call<ResponseListProduct>

val interceptor = HttpLoggingInterceptor().setLevel(HttpLoggingInterceptor.Level.BODY)
val headerInterceptor = object: Interceptor {

    override fun intercept(chain: Interceptor.Chain): Response {

        var request = chain.request()

        request = request.newBuilder()
            .addHeader("key","aW5kaWhvbWU")
            .addHeader("Content-Type","application/json")
            .addHeader("cache-control", "no-cache")
            .addHeader("postman-token", "6b02e1a7-87dc-c814-6545-65325bcd1d3d")
            .build()

        val response = chain.proceed(request)
        return response
    }
Run Code Online (Sandbox Code Playgroud)

android kotlin android-studio retrofit retrofit2

5
推荐指数
1
解决办法
5768
查看次数

更新 4.0.1 后 Android Studio 不工作

更新到 Android Studio 4.0.1 后,我的整个 Android Studio 停止工作!显示无法解析符号“AppCompatActivity”

在此处输入图片说明

在此处输入图片说明

当点击 AppCompatActivity 显示

当我点击 Setup JDK 打开 Select Project SDK 选择任何 Android API 并点击 OK 按钮没有任何反应。如果我单击“配置”按钮,则无法在此处更改配置 SDK。 在此处输入图片说明

如果我想从“工具”菜单打开 SDK 管理器,则什么也不会打开。此外,无法从文件菜单打开设置选项。但我以前的版本 Android Studio 工作正常。但是在我更新了所有项目之后,同样的问题仍然存在。我现在能做什么?请帮我?

android

5
推荐指数
1
解决办法
850
查看次数

DBT 是否支持创建临时表,如 create table #temp1 as select * from tab1 或者它仅适用于 CTE 方式

我找到了一种处理 DBT 中临时表的方法,将所有这些写在预钩中并在预钩外部调用最终临时表,经过测试并且工作正常,能够减少代码运行时间超过 20 分钟到 1 分钟。但是我看到一个问题,我们在 DBT 文档中看不到谱系图。除了 pre-hook 和 Docs 中的 lineage 之外,还有什么方法可以处理临时表吗?

dbt

4
推荐指数
2
解决办法
1449
查看次数

无法加载 plist 文件,错误无法解析 Plist 数据类型:key

我从 xamarin 表单应用程序的标题中收到错误消息。在我更新 VS2017 之前它没有那个错误。我这样做是因为我需要一些用于统一的库(并加载所有其他与游戏相关的库)。现在我什至无法在 Xamarin Forms 中加载 iOS 部分,它说不可用。这是我的 Info.plist

<?xml version="1.0" encoding="UTF-8"?> 
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> 
<plist version="1.0"> 
<dict> 
<key>UIDeviceFamily</key> 
<array> 
<integer>1</integer> 
<integer>2</integer> 
</array> 
<key>UISupportedInterfaceOrientations</key> 
<array> 
<string>UIInterfaceOrientationPortrait</string> 
<string>UIInterfaceOrientationLandscapeLeft</string> 
<string>UIInterfaceOrientationLandscapeRight</string> 
</array> 
<key>UISupportedInterfaceOrientations~ipad</key> 
<array> 
<string>UIInterfaceOrientationPortrait</string> 
<string>UIInterfaceOrientationPortraitUpsideDown</string> 
<string>UIInterfaceOrientationLandscapeLeft</string> 
<string>UIInterfaceOrientationLandscapeRight</string> 
</array> 
<key>MinimumOSVersion</key> 
<string>8.0</string> 
<key>CFBundleDisplayName</key> 
<string>AppPosventa</string> 
<key>CFBundleIdentifier</key> 
<string>com.companyname.AppPosventa</string> 
<key>CFBundleVersion</key> 
<string>1.0</string> 
<key>UILaunchStoryboardName</key> 
<string>LaunchScreen</string> 
<key>CFBundleName</key> 
<string>appPosventa</string> 
<key>XSAppIconAssets</key> 
<string>Assets.xcassets/AppIcon.appiconset</string> 
<key>NSLocationWhenInUseUsageDescription</key>
<key>UIAppFonts</key>
<array>
<string>fa-solid-900.ttf</string>
</array>
</dict> </plist>
Run Code Online (Sandbox Code Playgroud)

plist xamarin.ios ios xamarin xamarin.forms

3
推荐指数
1
解决办法
6386
查看次数

找不到Python2命令

所以我尝试像教程一样克隆这个 git,并且该程序是在 python2 上制作的,正如教程所说,我要运行该命令,python2 main.py但它不起作用,我该怎么做才能使它工作?请帮助我,谢谢。

操作系统:Windows 10 Python版本:Python 3.8 命令运行:python2 main.py 运行于:Git Bash 更多信息:我也无法运行命令:python3在 Bash 上,所以我使用了winpty python.exe它,但我没有安装 python 2 python 3.8会是这个原因吗?

请帮帮我谢谢:)

python-2.x python-3.x git-bash windows-10

2
推荐指数
1
解决办法
9111
查看次数

防火墙没有运行

当我尝试向 FirewallsD 添加端口时,出现以下异常:

centos 7 answer FirewallD is not running
Run Code Online (Sandbox Code Playgroud)

当我尝试重新加载时

须藤防火墙-cmd --reload

centos 7 answers 当我尝试开始时,FirewallD 没有运行

须藤防火墙-cmd --start

centos 7 个回答 FirewallD 没有运行

我能做什么?

centos7 firewalld

1
推荐指数
2
解决办法
2万
查看次数

为什么我不能在 Flutter ModalBottomSheet 中滚动自定义 WebView

嘿伙计们,有人知道为什么我不能在 ModalBottomSheet 中垂直滚动 WebView?这是我的代码,如果有什么问题,请告诉我或给我一些建议。

showModalBottomSheet(
      context: context,
      isScrollControlled: true,
      backgroundColor: Colors.transparent,
      builder: (context) => Container(
        height: MediaQuery.of(context).size.height * 0.75,
        decoration: new BoxDecoration(
          color: Colors.white,
          borderRadius: new BorderRadius.only(
            topLeft: const Radius.circular(25.0),
            topRight: const Radius.circular(25.0),
          ),
        ),
        child: Padding(
          padding: EdgeInsets.fromLTRB(0, 23, 0, 0),
          child: WebView(
              initialUrl: 'https://www.sicepat.com/checkAwb/',
              javascriptMode: JavascriptMode.unrestricted,
              onWebViewCreated: (controller) {
                _myController = controller;
              },
          onPageFinished: (initialUrl) {
            _myController.evaluateJavascript("document.getElementsByClassName('ws-header-container')[0].style.display='none';");
            _myController.evaluateJavascript("document.getElementsByClassName('ws-footer-page')[0].style.display='none';");
          },
        )
        ),
      ),
    ); 
Run Code Online (Sandbox Code Playgroud)

webview flutter flutter-showmodalbottomsheet

0
推荐指数
2
解决办法
1151
查看次数