如何摆脱智能电视键盘中的横向背景?

问题描述 投票:0回答:1

我的智能电视(Android 电视)键盘布局有问题。我想去掉键盘上方的白色背景。我该怎么做?

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.customknobkeyboard"
    android:versionCode="1"
    android:versionName="1.0">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/KeyboardTheme">

        <service
            android:name=".KnobKeyboardApp"
            android:label="@string/app_name"
            android:permission="android.permission.BIND_INPUT_METHOD"
            android:exported="true">
            <intent-filter>
                <action android:name="android.view.InputMethod" />
            </intent-filter>

            <meta-data
                android:name="android.view.im"
                android:resource="@xml/knob_method" />
        </service>

        <activity android:name=".MainActivity"
            android:exported="true"
            android:theme="@android:style/Theme.Translucent.NoTitleBar">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

    </application>

</manifest>

我尝试更改 androidmanifest.xml android:imeOptions="flagNoExtractUI",

java android kotlin android-tv on-screen-keyboard
1个回答
0
投票

试试这个,应该可以解决问题:

    @Override
    public boolean onEvaluateFullscreenMode() {
        return false;
    }

此模式停用全屏模式,这是横向视图的默认设置。

© www.soinside.com 2019 - 2024. All rights reserved.