gpt4 book ai didi

android 对讲辅助功能 - 自定义声音

转载 作者:行者123 更新时间:2023-11-30 01:53:33 25 4
gpt4 key购买 nike

我已经创建了自己的一组字母发音(取代了常规的 a、b、c、..z)。我想自定义对讲功能,以便在使用我自己的应用程序时使用我自己的声音而不是内置声音。这意味着当视障用户尝试阅读我的应用程序中标签的内容时,他会听到我自己的声音。这可能吗?如果是这样,实现这一目标的正确方法是什么?

最佳答案

假设您自己的声音具有“拼音”,这将非常容易。假设您有字母 A,您希望它发音为“A”而不是“uh”。您只需将“A”替换为“ay”,TalkBack 就会正确发音。假设是这样的话,你想做的事情就很容易了。如果您创建的是实际声音,并且不能像我假设的那样简单地使用语音拼写,就像 alanv 所说的那样,这是不可能的。或者至少,涉及的不仅仅是更改您的应用程序!!!

您要做的是拦截来自您的应用程序的所有辅助功能事件,然后在您拦截这些事件时,将内容描述替换为您的拼音内容描述。棘手的部分是模拟 TalkBack 逻辑以从辅助功能事件中获取文本,以便您获取正确的文本!否则,您最终会修改错误的字符串,或者什么都不做。

如果您将此辅助功能委托(delegate)附加到 View 层次结构中的 View ,则可以覆盖辅助功能节点信息的内容描述,并将其替换为您的语音发音。我附上了我的解决方案的所有相关部分。可能有一种方法可以通过仅处理 Root View 的可访问性委托(delegate)而不是整个 View 层次结构来实现这一点。稍后我可能会调查更多,但这只是花花公子,并且是负载的线性操作(以及动态内容的 View 添加),一点也不差。

将此代码添加到您的 onCreate 方法,并修改“convertText”函数以满足您的需要,您应该已经准备就绪!

final View.AccessibilityDelegate accessiblityDelegate =  new View.AccessibilityDelegate() {

String convertText(String argString) {
//Do your phonetic conversion in here!
//A little Regex. A little String replacement and you're golden!
return argString;
}
@Override
public void onInitializeAccessibilityNodeInfo(View host, AccessibilityNodeInfo nodeInfo) {
super.onInitializeAccessibilityNodeInfo(host, nodeInfo);

String text = null;

if (nodeInfo.getContentDescription() != null) {
text = convertText(nodeInfo.getContentDescription().toString());
} else if (nodeInfo.getText() != null) {
text = convertText(nodeInfo.getText().toString());
} else if (host instanceof TextView) {
TextView textView = (TextView)host;
text = convertText(textView.getText().toString());
}

if (text != null) nodeInfo.setContentDescription(text);
}

};

rootView.addOnLayoutChangeListener(new View.OnLayoutChangeListener() {
@Override
public void onLayoutChange(View v, int left, int top, int right, int bottom, int oldLeft, int oldTop, int oldRight, int oldBottom) {
addAccessibilityDelegateToViews(v);
}

private void addAccessibilityDelegateToViews(View v) {
v.setAccessibilityDelegate(accessiblityDelegate);

if (v instanceof ViewGroup) {
ViewGroup viewGroup = (ViewGroup)v;

for (int i = 0; i < viewGroup.getChildCount(); ++i) {
View view = viewGroup.getChildAt(i);

addAccessibilityDelegateToViews(view);
}
}
}
});

关于android 对讲辅助功能 - 自定义声音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32629035/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com