我正在应用程序中使用SearchView。我想在searchview文本框中输入文本并在另一个文本视图中显示它。
我可以使用SearchViewListener来实现这一点。
searchView.setOnQueryTextListener(new android.support.v7.widget.SearchView.OnQueryTextListener() {
@Override
public boolean onQueryTextSubmit(String query) {
//adapter.filterData(query);
//display text where ever i want
return false;
}
@Override
public boolean onQueryTextChange(String query) {
adapter.filterData(query);
//display text where ever i want
return false;
}
});
return true;
}
现在我用麦克制作了serachview
android:voiceSearchMode="showVoiceSearchButton|launchRecognizer"
麦克风正在显示并可单击。很完美。。
现在我的问题是如何捕捉这些麦克风数据并在任何我想显示的地方显示文本。
最佳答案
为了显示从麦克风捕捉到的数据,我试图在android developer link的帮助下给出答案。
正如你刚才提到的,
*麦克风正在显示并可单击。完美..如何捕获此麦克风数据并在需要的地方显示文本。*
您需要为seachable&xml资源提供意图过滤器。
要获取由mic捕获的数据(将作为对话框打开),则需要在选中intent actiononNewIntent
后在活动的Intent.ACTION_SEARCH
中处理它。
搜索语音.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<android.support.v7.widget.Toolbar
android:id="@+id/ab_tool"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#00FFFFFF"
android:minHeight="?attr/actionBarSize">
</android.support.v7.widget.Toolbar>
<TextView
android:id="@+id/txtVoiceSeachQuery"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="#FF0000"
android:textSize="26sp" />
</LinearLayout>
搜索语音测试
public class SearchVoiceTest extends AppCompatActivity {
private TextView txtVoiceSeachQuery;
private SearchView searchView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.search_voice);
Toolbar toolbar = (Toolbar) findViewById(R.id.ab_tool);
setSupportActionBar(toolbar);
toolbar.setTitle("Voice Text Display");
txtVoiceSeachQuery = (TextView) findViewById(R.id.txtVoiceSeachQuery);
}
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
String query = intent.getStringExtra(SearchManager.QUERY);
searchView.setQuery(String.valueOf(query), false);
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu_home_screen, menu);
searchView =
(SearchView) menu.findItem(R.id.search_view).getActionView();
SearchManager searchManager = (SearchManager) getSystemService(Context.SEARCH_SERVICE);
searchView.setSearchableInfo(searchManager.getSearchableInfo(getComponentName()));
searchView.setOnQueryTextListener(new android.support.v7.widget.SearchView.OnQueryTextListener() {
@Override
public boolean onQueryTextSubmit(String query) {
//adapter.filterData(query);
//display text where ever i want
return false;
}
@Override
public boolean onQueryTextChange(String query) {
//display text where ever i want
if (txtVoiceSeachQuery != null) {
txtVoiceSeachQuery.setText(query);
}
return false;
}
});
return true;
}
}
AndroidManifest活动声明
<activity
android:name="com.example.search.voice.SearchVoiceTest"
android:configChanges="orientation|screenSize"
android:launchMode="singleTop" android:label="Search Voice Test"
android:theme="@style/AppThemeSliderToolbar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="android.intent.action.SEARCH" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
android:resource="@xml/search_with_voice" />
</activity>
res/xml/search_with_voice.xml文件
<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:android="http://schemas.android.com/apk/res/android"
android:hint="Give Your Query Here"
android:label="@string/app_name"
android:voiceSearchMode="showVoiceSearchButton|launchRecognizer">
</searchable>
res/menu/menu_主页屏幕.xml
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
>
<item
android:id="@+id/search_view"
android:title="Search"
app:actionViewClass="android.support.v7.widget.SearchView"
app:showAsAction="ifRoom|collapseActionView"></item>
</menu>
在将查询分配给seachview之后,我们可以在
setOnQueryTextListener
中获取callbackonQueryTextChange
,因此从那里为textview分配测试目的值,您可以在那里进行更改。这里我给出了我的答案输出链接。
Search with voice
Display Captured data from mic
如果有什么事告诉我