在 android 中进行语音识别后,文本不会打印在 editText 上
Text doesn't get printed on editText after Voice Recognition in android
在 运行 上,语音识别 Intent 启动,但它不会在 EditText
上打印任何内容
代码如下:
import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.speech.RecognizerIntent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.ImageButton;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
public class dialog1cl extends AppCompatActivity {
public EditText ed;
private static final int av= 0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.dialog1);
ed=(EditText)findViewById(R.id.editText);
ImageButton im=(ImageButton)findViewById(R.id.imageButton);
im.setOnClickListener(new View.OnClickListener(){
public void onClick(View view){
promptspeech();
}
});
}
public void promptspeech()
{
Intent i=new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
i.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
i.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault());
i.putExtra(RecognizerIntent.EXTRA_PROMPT,"Say Something!");
try {
startActivityForResult(i,av );
}
catch(ActivityNotFoundException a)
{
Toast.makeText(dialog1cl.this,"Sorry! Your device doesnt support speech Language",Toast.LENGTH_LONG).show();
}
}
public void onActivityResult(int request_code , int result_code, Intent i){
if(request_code ==av && result_code==RESULT_OK)
{
List<String> result=i.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
ed.setText(result.get(0));
}
super.onActivityResult(request_code, result_code, i);
}
}
XML代码:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:weightSum="1"
android:id="@+id/lin1">
<ImageView
android:layout_width="match_parent"
android:layout_height="50dp"
android:scaleType="center"
android:background="#FFFFBB32"
android:contentDescription="PARAMETERS" />
<TextView
android:layout_width="match_parent"
android:layout_height="34dp"
android:textSize="20dp"
android:textStyle="bold"
android:textColor = "@color/blue1"
android:text="Task Name?"
android:id="@+id/textView2"
android:layout_gravity="center_horizontal" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:layout_width="250dp"
android:layout_height="wrap_content"
android:inputType="textPersonName"
android:hint="Enter your Task"
android:ems="10"
android:id="@+id/editText" />
<ImageButton
android:layout_width="40dp"
android:layout_height="40dp"
android:background="@color/white"
android:id="@+id/imageButton"
android:src="@drawable/ic_action_voice"
android:layout_column="22" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="match_parent"
android:layout_height="34dp"
android:textSize="20dp"
android:textStyle="bold"
android:textColor = "@color/blue1"
android:text="DeadLine?"
android:id="@+id/textView3"
android:layout_column="0" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:inputType="textPersonName"
android:hint="Name"
android:ems="10"
android:id="@+id/editText2"
android:layout_column="0"
android:focusable="false"/>
<ImageButton
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/ic_action_calendar"
android:background="@color/white"
android:id="@+id/imageButton2"
android:layout_column="22" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="match_parent"
android:layout_height="34dp"
android:textSize="20dp"
android:textStyle="bold"
android:textColor = "@color/blue1"
android:text="Time?"
android:id="@+id/textView4"
android:layout_column="0" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:inputType="textPersonName"
android:text="Name"
android:ems="10"
android:id="@+id/editText3"
android:layout_column="0" />
<ImageButton
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/ic_action_time"
android:background="@color/white"
android:id="@+id/imageButton3"
android:layout_column="22" />
</TableRow>
</TableLayout>
您需要获取从 activity 获得的结果并将 EditText 的文本设置为等于它。
List<String> result=i.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
String text = getTextFromResult(result);
ed.setText(text);
用这个改变你的 activity 结果,你必须以编程方式将文本设置为你的编辑文本
public void onActivityResult(int request_code , int result_code, Intent i){
if(request_code ==av && result_code==RESULT_OK)
{
List<String> result=i.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
ed.setText(result.get(0));
}
super.onActivityResult(request_code, result_code, i);
}
使用这个官方教程,我让它可以用于操作栏。创建可搜索和 meta-data 时要格外小心。
https://developer.android.com/training/search/setup.html
如果您想要文本的结果在同一个 activity 中,请将 Search Intent Filter
指向您当前的 activity 并使 activity singleInstance
或 singleTop
.
大家好,我为这样的错误道歉..但意识到代码是正确的,但我在 xml 文件中为 table 布局将我的背景设为白色,因此无法意识到它一直在编辑文本上打印……当然是一个罕见的错误……希望它能帮助那里的人……
上面的代码适用于语音识别...从 xml:
中排除以下部分
background:"@colors/white"
在 运行 上,语音识别 Intent 启动,但它不会在 EditText
代码如下:
import android.app.Activity;
import android.content.ActivityNotFoundException;
import android.content.Intent;
import android.speech.RecognizerIntent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.EditText;
import android.widget.ImageButton;
import android.widget.Toast;
import java.util.ArrayList;
import java.util.List;
import java.util.Locale;
public class dialog1cl extends AppCompatActivity {
public EditText ed;
private static final int av= 0;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.dialog1);
ed=(EditText)findViewById(R.id.editText);
ImageButton im=(ImageButton)findViewById(R.id.imageButton);
im.setOnClickListener(new View.OnClickListener(){
public void onClick(View view){
promptspeech();
}
});
}
public void promptspeech()
{
Intent i=new Intent(RecognizerIntent.ACTION_RECOGNIZE_SPEECH);
i.putExtra(RecognizerIntent.EXTRA_LANGUAGE_MODEL,RecognizerIntent.LANGUAGE_MODEL_FREE_FORM);
i.putExtra(RecognizerIntent.EXTRA_LANGUAGE, Locale.getDefault());
i.putExtra(RecognizerIntent.EXTRA_PROMPT,"Say Something!");
try {
startActivityForResult(i,av );
}
catch(ActivityNotFoundException a)
{
Toast.makeText(dialog1cl.this,"Sorry! Your device doesnt support speech Language",Toast.LENGTH_LONG).show();
}
}
public void onActivityResult(int request_code , int result_code, Intent i){
if(request_code ==av && result_code==RESULT_OK)
{
List<String> result=i.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
ed.setText(result.get(0));
}
super.onActivityResult(request_code, result_code, i);
}
}
XML代码:
<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white"
android:weightSum="1"
android:id="@+id/lin1">
<ImageView
android:layout_width="match_parent"
android:layout_height="50dp"
android:scaleType="center"
android:background="#FFFFBB32"
android:contentDescription="PARAMETERS" />
<TextView
android:layout_width="match_parent"
android:layout_height="34dp"
android:textSize="20dp"
android:textStyle="bold"
android:textColor = "@color/blue1"
android:text="Task Name?"
android:id="@+id/textView2"
android:layout_gravity="center_horizontal" />
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:layout_width="250dp"
android:layout_height="wrap_content"
android:inputType="textPersonName"
android:hint="Enter your Task"
android:ems="10"
android:id="@+id/editText" />
<ImageButton
android:layout_width="40dp"
android:layout_height="40dp"
android:background="@color/white"
android:id="@+id/imageButton"
android:src="@drawable/ic_action_voice"
android:layout_column="22" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="match_parent"
android:layout_height="34dp"
android:textSize="20dp"
android:textStyle="bold"
android:textColor = "@color/blue1"
android:text="DeadLine?"
android:id="@+id/textView3"
android:layout_column="0" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:inputType="textPersonName"
android:hint="Name"
android:ems="10"
android:id="@+id/editText2"
android:layout_column="0"
android:focusable="false"/>
<ImageButton
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/ic_action_calendar"
android:background="@color/white"
android:id="@+id/imageButton2"
android:layout_column="22" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:textAppearance="?android:attr/textAppearanceMedium"
android:layout_width="match_parent"
android:layout_height="34dp"
android:textSize="20dp"
android:textStyle="bold"
android:textColor = "@color/blue1"
android:text="Time?"
android:id="@+id/textView4"
android:layout_column="0" />
</TableRow>
<TableRow
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:inputType="textPersonName"
android:text="Name"
android:ems="10"
android:id="@+id/editText3"
android:layout_column="0" />
<ImageButton
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/ic_action_time"
android:background="@color/white"
android:id="@+id/imageButton3"
android:layout_column="22" />
</TableRow>
</TableLayout>
您需要获取从 activity 获得的结果并将 EditText 的文本设置为等于它。
List<String> result=i.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
String text = getTextFromResult(result);
ed.setText(text);
用这个改变你的 activity 结果,你必须以编程方式将文本设置为你的编辑文本
public void onActivityResult(int request_code , int result_code, Intent i){
if(request_code ==av && result_code==RESULT_OK)
{
List<String> result=i.getStringArrayListExtra(RecognizerIntent.EXTRA_RESULTS);
ed.setText(result.get(0));
}
super.onActivityResult(request_code, result_code, i);
}
使用这个官方教程,我让它可以用于操作栏。创建可搜索和 meta-data 时要格外小心。 https://developer.android.com/training/search/setup.html
如果您想要文本的结果在同一个 activity 中,请将 Search Intent Filter
指向您当前的 activity 并使 activity singleInstance
或 singleTop
.
大家好,我为这样的错误道歉..但意识到代码是正确的,但我在 xml 文件中为 table 布局将我的背景设为白色,因此无法意识到它一直在编辑文本上打印……当然是一个罕见的错误……希望它能帮助那里的人…… 上面的代码适用于语音识别...从 xml:
中排除以下部分background:"@colors/white"