CarGuo / GSYVideoPlayer

视频播放器(IJKplayer、ExoPlayer、MediaPlayer),HTTPS,16k page size,支持弹幕,外挂字幕,支持滤镜、水印、gif截图,片头广告、中间广告,多个同时播放,支持基本的拖动,声音、亮度调节,支持边播边缓存,支持视频自带rotation的旋转(90,270之类),重力旋转与手动旋转的同步支持,支持列表播放 ,列表全屏动画,视频加载速度,列表小窗口支持拖动,动画效果,调整比例,多分辨率切换,支持切换播放器,进度条小窗口预览,列表切换详情页面无缝播放,rtsp、concat、mpeg。
https://juejin.cn/user/817692379985752/posts
Apache License 2.0
20.25k stars 4.2k forks source link

8.6.0 版本下 导致 EditText.inputType以及 digits 属性失效 #4014

Closed zippo88888888 closed 4 months ago

zippo88888888 commented 4 months ago

(!!!!请务必务必按照issue模板,修改 后提交问题!!!!,不按模板提Isuue删除处理)

(ps 首页问题集锦和demo请先了解一下!)

⚠️提问前建议先看看: https://mp.weixin.qq.com/s/HjSdmAsHuvixCH_EWdvk3Q

问题描述:

如标题所示,使用 8.1.6-jitpack 版本 EditText.inputType以及 digits 属性 就一切正常,之前也有其他同学提这个问题 #3594

出现问题的视频流

❗❗❗⚠️⚠️⚠️这个很重要!!!!没有问题流的问题无法处理复现⚠️⚠️⚠️❗❗❗

问题机型/系统:

例如 小米12S / Android12 / miui 12.0.20稳定版

GSY依赖版本

implementation 'com.github.CarGuo.GSYVideoPlayer:GSYVideoPlayer:v8.6.0-release-jitpack'

Demo中的复现步骤

在demo中:MainActivity 中 对应的布局文件中新增 EditText

问题代码:(如果有)

<?xml version="1.0" encoding="utf-8"?>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <LinearLayout
        android:id="@+id/activity_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingBottom="@dimen/activity_vertical_margin"
        tools:context="com.example.gsyvideoplayer.MainActivity">

        <EditText
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:inputType="textEmailAddress"
            android:digits="0123456789Xx"
            android:maxLength="18"
            android:maxLines="1"
            android:imeOptions="actionDone"
            android:hint="请输入身份证号"/>

        <Button
            android:id="@+id/open_simple"
            android:layout_width="240dp"
            android:layout_height="wrap_content"
            android:text="简单播放" />

        <Button
            android:id="@+id/open_btn"
            android:layout_width="240dp"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:text="打开Video" />

        <Button
            android:id="@+id/open_control"
            android:layout_width="240dp"
            android:layout_height="wrap_content"
            android:layout_marginTop="20dp"
            android:text="带控制DEMO" />

        ...

    </LinearLayout>
</ScrollView>

问题log(如果有)


xxxxxxx
CarGuo commented 4 months ago

你添加多一个 androidx.appcompat:appcompat:1.6.0 就可以了,当时是因为 GSY 用的官方 appcompat 1.4.0 的版本有 bug