1

我已经启动了一个 Turbolinks android 应用程序并且有一个需要日期输入的表单。

<form>
  Birthday:
  <input type="date" name="bday">
  <input type="submit">
</form>

问题是,当我触摸日期输​​入字段时,它不会显示本机 android 日期选择器,这很奇怪,因为当我在设备上的 Chrome 浏览器中加载页面时,它会显示..

我知道 android WebViews 从 API 版本 19 开始只支持这些类型的 HTML5 输入,所以我已经这样设置了我的应用程序:

应用程序/build.gradle

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'

apply plugin: 'kotlin-android-extensions'

android {
    compileSdkVersion 26
    defaultConfig {
        applicationId "com.myapp.turbolinks.app"
        minSdkVersion 19
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            postprocessing {
                removeUnusedCode false
                removeUnusedResources false
                obfuscate false
                optimizeCode false
                proguardFile 'proguard-rules.pro'
            }
        }
    }
}

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation"org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
    implementation 'com.android.support:appcompat-v7:26.1.0'
    implementation 'com.android.support.constraint:constraint-layout:1.0.2'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.1'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
    compile 'com.basecamp:turbolinks:1.0.7'
}

repositories {
    jcenter()
}

我没有使用任何可能干扰的 CSS 或 JS 库。我还检查了模拟器使用 Chrome 网络视图实现。我已经对其进行了测试,但它type="datetime"type="time"不起作用。

我很感激这方面的任何帮助。也许我错过了什么?

谢谢。

4

0 回答 0