- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我要问的第一个问题。我开发了一个 android 应用程序,它使用广播接收器接收传入的短信,然后将消息与预定义的审查词数组列表进行比较,然后用 * 替换短信中的审查词现在我想要文本到语音来说出消息内容,但不要说出被审查的单词 *。我只需要一个指南或如何为此创建逻辑。任何帮助将是极大的帮助。我来到这里希望能在这里找到帮助。谢谢你
这是我的代码
import android.app.Activity;
import android.app.Dialog;
import android.content.ContentResolver;
import android.content.Context;
import android.content.Intent;
import android.database.Cursor;
import android.os.Bundle;
import android.provider.ContactsContract;
import android.speech.tts.TextToSpeech;
import android.speech.tts.UtteranceProgressListener;
import android.speech.tts.Voice;
import android.telephony.TelephonyManager;
import android.util.Log;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.Locale;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class DialogActivity extends Activity implements View.OnClickListener
,TextToSpeech.OnInitListener
{
TextView SMSsender,body;
Button ok, dismissBtn;
Dialog dialog;
String strSender,strBody,contactName,contactNumber;
TextToSpeech tts;
ArrayList<String> offensiveWords;
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
dialog = new Dialog(this);
offensiveWords = new ArrayList<>();
offensiveWords.add("Hack");
offensiveWords.add("Offense");
offensiveWords.add("Where");
offensiveWords.add("Hell");
dialog.setContentView(R.layout.dialog_layout);
SMSsender = dialog.findViewById(R.id.sender);
body = dialog.findViewById(R.id.textBody);
ok = dialog.findViewById(R.id.readSMS);
dismissBtn = dialog.findViewById(R.id.cancel);
tts = new TextToSpeech(this,this,"com.google.android.tts");
ok.setOnClickListener(this);
dismissBtn.setOnClickListener(this);
//Get Data from Intent
Intent intent = getIntent();
strSender = intent.getStringExtra("Sender");
strBody = intent.getStringExtra("Body");
//Check message for offensive words
if(compareString(strBody,offensiveWords.get(0))
||compareString(strBody,offensiveWords.get(1))
||compareString(strBody,offensiveWords.get(2))
||compareString(strBody,offensiveWords.get(3))
)
{
//--------------Put exact * characters as the words length-----------------
//=========================================================================
StringBuilder sbIndex0 = new StringBuilder();
for(int i=0; i != offensiveWords.get(0).length(); i++)
sbIndex0.append("*");
strBody = strBody.replaceAll(offensiveWords.get(0),sbIndex0.toString());
//=========================================================================
StringBuilder sbIndex1 = new StringBuilder();
for(int i=0; i != offensiveWords.get(1).length(); i++)
sbIndex1.append("*");
strBody = strBody.replaceAll(offensiveWords.get(1),sbIndex1.toString());
//=========================================================================
StringBuilder sbIndex2 = new StringBuilder();
for(int i=0; i != offensiveWords.get(2).length(); i++)
sbIndex2.append("*");
strBody = strBody.replaceAll(offensiveWords.get(2),sbIndex2.toString());
//=========================================================================
StringBuilder sbIndex3 = new StringBuilder();
for(int i=0; i != offensiveWords.get(3).length(); i++)
sbIndex3.append("*");
strBody = strBody.replaceAll(offensiveWords.get(3),sbIndex3.toString());
//=========================================================================
}
//Show message
body.setText(strBody);
dialog.closeOptionsMenu();
dialog.setTitle("Incoming SMS");
//Check user contacts list
getAllContacts();
//If sender is in contact list then show sender name
if(strSender.equalsIgnoreCase(contactNumber.replace(" ","")))
{
SMSsender.setText(contactName);
strSender = contactName;
}
//else show sender number
else
SMSsender.setText(strSender);
dialog.show();
}
@Override
public void onClick(View view)
{
switch (view.getId())
{
case R.id.readSMS:
//Start TTS Here
TelephonyManager manager = (TelephonyManager) this.getSystemService(Context.TELEPHONY_SERVICE);
//Country code of sender
String countryCode = manager.getSimCountryIso();
//strSender has the name of contact
if(strSender.contains(contactName))
speakOut();
//Speak message only
else
speakUnknownNumber();
break;
case R.id.cancel:
//Dismiss Dialog
dialog.dismiss();
//Shutdown Engine
if(tts.isSpeaking())
{
tts.stop();
tts.shutdown();
}
//Kill Activity
finish();
break;
}
}
@Override
public void onInit(int i)
{
if(i == TextToSpeech.SUCCESS)
{
int result = tts.setLanguage(Locale.US);
if (result == TextToSpeech.LANG_MISSING_DATA
|| result == TextToSpeech.LANG_NOT_SUPPORTED)
{
Log.e("TTS", "This Language is not supported");
}
}
else
{
Toast.makeText(this,"Text To Speech Engine Failed",Toast.LENGTH_LONG).show();
}
}
public void speakOut()
{
tts.setPitch(1.3f);
tts.setSpeechRate(0.7f);
tts.speak("Sms from "+strSender+
"\n\n"+"Message\n\n"+strBody,TextToSpeech.QUEUE_ADD,null,null);
}
public void speakUnknownNumber()
{
tts.setPitch(1.3f);
tts.setSpeechRate(0.7f);
tts.speak("\n\n"+"Message\n\n"+strBody,TextToSpeech.QUEUE_ADD,null,null);
}
@Override
protected void onPause()
{
super.onPause();
if(tts != null)
{
tts.stop();
tts.shutdown();
}
}
//Read All contacts from phone
public void getAllContacts()
{
ContentResolver cr = getContentResolver();
Cursor cur = cr.query(ContactsContract.Contacts.CONTENT_URI,
null, null, null, null);
if ((cur != null ? cur.getCount() : 0) > 0)
{
while (cur != null && cur.moveToNext())
{
String id = cur.getString(
cur.getColumnIndex(ContactsContract.Contacts._ID));
//Contact Name of sender if its present in address book
contactName = cur.getString(cur.getColumnIndex(
ContactsContract.Contacts.DISPLAY_NAME));
if (cur.getInt(cur.getColumnIndex(
ContactsContract.Contacts.HAS_PHONE_NUMBER)) > 0) {
Cursor pCur = cr.query(
ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
null,
ContactsContract.CommonDataKinds.Phone.CONTACT_ID + " = ?",
new String[]{id}, null);
while (pCur.moveToNext())
{
contactNumber = pCur.getString(pCur.getColumnIndex(
ContactsContract.CommonDataKinds.Phone.NUMBER));
}
pCur.close();
}
}
}
if(cur!=null)
{
cur.close();
}
} //End of getAllContacts
//Method for matching censored words
public boolean compareString(String source,String item)
{
String pattern = "(?<!\\S)" + item + "(?!\\S)";
Pattern p = Pattern.compile(pattern);
Matcher m = p.matcher(source);
return m.find();
}
}
最佳答案
所以经过大量的努力,我找到了一个不错的方法来做到这一点。创建另一个字符串并将结果存储在没有攻击性单词的字符串中,并用 *** 显示字符串但读取干净的字符串..
示例代码是
//Show message
body.setText(strBody);
//Extract string without offensive words
cleanString = strBody;
cleanString = cleanString.replace("*","");
//=========================
然后像这样说
public void speakUnknownNumber()
{
tts.setPitch(1.3f);
tts.setSpeechRate(0.7f);
tts.speak("\n\n"+"Message\n\n"+cleanString,TextToSpeech.QUEUE_ADD,null,null);
}
**输出strBody = What the **** ==> here **** are hellcleanString = 什么**
所以 tts 只会说干净的话。
希望这对遇到同样问题的人有所帮助。干杯
关于android - 如何使tts跳过字符串android中的特定单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51543883/
如何使用 SPListCollection.Add(String, String, String, String, Int32, String, SPListTemplate.QuickLaunchO
我刚刚开始使用 C++ 并且对 C# 有一些经验,所以我有一些一般的编程经验。然而,似乎我马上就被击落了。我试过在谷歌上寻找,以免浪费任何人的时间,但没有结果。 int main(int argc,
这个问题已经有答案了: In Java 8 how do I transform a Map to another Map using a lambda? (8 个回答) Convert a Map>
我正在使用 node + typescript 和集成的 swagger 进行 API 调用。我 Swagger 提出以下要求 http://localhost:3033/employees/sear
我是 C++ 容器模板的新手。我收集了一些记录。每条记录都有一个唯一的名称,以及一个字段/值对列表。将按名称访问记录。字段/值对的顺序很重要。因此我设计如下: typedef string
我需要这两种方法,但j2me没有,我找到了一个replaceall();但这是 replaceall(string,string,string); 第二个方法是SringBuffer但在j2me中它没
If string is an alias of String in the .net framework为什么会发生这种情况,我应该如何解释它: type JustAString = string
我有两个列表(或字符串):一个大,另一个小。 我想检查较大的(A)是否包含小的(B)。 我的期望如下: 案例 1. B 是 A 的子集 A = [1,2,3] B = [1,2] contains(A
我有一个似乎无法解决的小问题。 这里...我有一个像这样创建的输入... var input = $(''); 如果我这样做......一切都很好 $(this).append(input); 如果我
我有以下代码片段 string[] lines = objects.Split(new string[] { "\r\n", "\n" }, StringSplitOptions.No
这可能真的很简单,但我已经坚持了一段时间了。 我正在尝试输出一个字符串,然后输出一个带有两位小数的 double ,后跟另一个字符串,这是我的代码。 System.out.printf("成本:%.2
以下是 Cloud Firestore 列表查询中的示例之一 citiesRef.where("state", ">=", "CA").where("state", "= 字符串,我们在Stack O
我正在尝试检查一个字符串是否包含在另一个字符串中。后面的代码非常简单。我怎样才能在 jquery 中做到这一点? function deleteRow(locName, locID) { if
这个问题在这里已经有了答案: How to implement big int in C++ (14 个答案) 关闭 9 年前。 我有 2 个字符串,都只包含数字。这些数字大于 uint64_t 的
我有一个带有自定义转换器的 Dozer 映射: com.xyz.Customer com.xyz.CustomerDAO customerName
这个问题在这里已经有了答案: How do I compare strings in Java? (23 个回答) 关闭 6 年前。 我想了解字符串池的工作原理以及一个字符串等于另一个字符串的规则是
我已阅读 this问题和其他一些问题。但它们与我的问题有些无关 对于 UILabel 如果你不指定 ? 或 ! 你会得到这样的错误: @IBOutlet property has non-option
这两种方法中哪一种在理论上更快,为什么? (指向字符串的指针必须是常量。) destination[count] 和 *destination++ 之间的确切区别是什么? destination[co
This question already has answers here: Closed 11 years ago. Possible Duplicates: Is String.Format a
我有一个Stream一个文件的,现在我想将相同的单词组合成 Map这很重要,这个词在 Stream 中出现的频率. 我知道我必须使用 collect(Collectors.groupingBy(..)
我是一名优秀的程序员,十分优秀!