9

我正在尝试找到一种在敲击键时禁用和启用键盘声音和振动的方法。我在Stack Overflow和其他Android 论坛上进行了搜索,但没有找到任何结果。

我试图AudioManager启用振动模式,但我想激活振动模式和键盘上的声音。

audioManager.setRingerMode(AudioManager.RINGER_MODE_VIBRATE);
audioManager.setVibrateSetting(AudioManager.VIBRATE_TYPE_RINGER, 
                AudioManager.VIBRATE_SETTING_ON);

有什么办法可以改变android.provider.Settings键盘声音和振动?

4

3 回答 3

11

查看如何为我的所有应用程序或活动禁用默认音效以禁用敲击声音。

要以编程方式禁用触觉反馈和触摸声音,请查看http://developer.android.com/reference/android/view/View.html#setHapticFeedbackEnabled(boolean) http://developer.android.com/reference/android/视图/View.html#setSoundEffectsEnabled(布尔值)

更简单的方法是在您的 styles.xml 中定义以下内容

<!-- Application theme. -->
<style name="AppTheme" parent="@android:style/Theme.NoTitleBar.Fullscreen">
    <item name="android:soundEffectsEnabled">false</item>
    <item name="android:hapticFeedbackEnabled">false</item>
</style>

在你的 manifest.xml

<application [...] android:theme="@style/AppTheme" >
于 2013-05-14T01:29:43.263 回答
4

根据您的评论:

我说的是 android 中的默认键盘,我希望能够在用户点击键盘中的某个键时禁用/启用键盘声音和振动,(例如在键盘设置中)

&

我说的是软键盘,例如 SAMSUNG GALAXY S2 、HTC ONE ...等

AFAIK,您无法做到这一点,因为每个输入法都在内部保留其声音/振动偏好值。参见例如Android (AOSP) IMe(截至本文写作第 30~39 行):

    <CheckBoxPreference
        android:key="vibrate_on"
        android:title="@string/vibrate_on_keypress"
        android:defaultValue="@bool/config_default_vibration_enabled"
        android:persistent="true" />
    <CheckBoxPreference
        android:key="sound_on"
        android:title="@string/sound_on_keypress"
        android:defaultValue="@bool/config_default_sound_enabled"
        android:persistent="true" />

如您所见,它将振动/声音值存储在其共享首选项中。这适用于市场上的大多数 IMe。因此,您无法从单点控制所有 IMe 的振动/声音效果。

于 2013-05-15T07:47:16.927 回答
0

是的,如果您具有 root 访问权限,则可以执行此操作。这是一个漫长的过程,但您可以这样做:

步骤: 1 创建命名的 xml 文件com.android.inputmethod.latin_preferences.xml并保存在资产中。

com.android.inputmethod.latin_preferences.xml

<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
    <boolean name="popup_on" value="false" />
    <string name="auto_correction_threshold">1</string>
    <boolean name="pref_enable_metrics_logging" value="true" />
    <boolean name="pref_voice_input_key" value="true" />
    <boolean name="pref_key_use_personalized_dicts" value="true" />
    <boolean name="pref_key_block_potentially_offensive" value="true" />
    <int name="last_shown_emoji_category_id" value="1" />
    <boolean name="sound_on" value="false" />
    <string name="emoji_recent_keys">[{&quot;Integer&quot;:128533}]</string>
    <boolean name="auto_cap" value="true" />
    <boolean name="show_suggestions" value="true" />
    <boolean name="pref_key_use_contacts_dict" value="true" />
    <boolean name="next_word_prediction" value="true" />
    <boolean name="pref_key_use_double_space_period" value="true" />
    <int name="emoji_category_last_typed_id1" value="0" />
    <boolean name="vibrate_on" value="false" />
</map>

第 2 步:将此文件复制到您的应用程序文件夹(您可以访问的任何地方)中,使用asset manager您需要的

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />

此功能将从资产中复制文件

public static void copyAssets(Context context, String assetPath, String outFilename) {
        AssetManager assetManager = context.getAssets();
        InputStream in = null;
        OutputStream out = null;
        try {
            in = assetManager.open(assetPath);
            File outFile = new File(context.getExternalFilesDir(null), outFilename);

            out = new FileOutputStream(outFile);
            copyFile(in, out);
        } catch (IOException e) {
            Log.e(TAG, "Failed to copy asset: " + outFilename, e);
        } finally {
            if (in != null) {
                try {
                    in.close();
                } catch (IOException e) {
                }
            }
            if (out != null) {
                try {
                    out.close();
                } catch (IOException e) {
                }
            }
        }
    }

public static void copyFile(InputStream in, OutputStream out) throws IOException {
        byte[] buffer = new byte[1024];
        int read;
        while ((read = in.read(buffer)) != -1) {
            out.write(buffer, 0, read);
        }
    }

第三步:覆盖系统偏好文件系统路径(destPath)是/data/data/com.android.inputmethod.latin/shared_prefs

public static void copyToSystem(final String sourceFilePath, final String destPath) {
        Thread background = new Thread(new Runnable() {

            @Override
            public void run() {
                try {
                    Process process = Runtime.getRuntime().exec("su");
                    DataOutputStream os = new DataOutputStream(process.getOutputStream());
//                    
                    os.writeBytes("cp -f " + sourceFilePath + " " + destPath + "\n");
                    os.flush();
                    os.writeBytes("exit\n");
                    os.flush();
                    process.waitFor();
                    process.waitFor();
                } catch (InterruptedException e) {
                    e.printStackTrace();
                    Log.e(TAG, e.toString());
                } catch (IOException e) {
                    e.printStackTrace();
                    Log.e(TAG, e.toString());
                }
            }
        });
        background.start();
    }

第 4 步:重启设备

这一切都完成了。这些步骤将关闭按键声音和按键振动

于 2017-11-02T13:49:03.697 回答