アプリを1つのアクティビティで構成しようとしています。このアクティビティは、検索を作成し、検索を受信できる必要があります。残念ながら、アクションバーの検索ボタンをクリックすると、SearchViewに「ダブル」検索バーが表示されます。つまり、アクションバーに1秒間表示される検索バー(暗い--SearchView)があり、次にアクションバーの上に2番目の検索バー(白)が表示されます。何か助けはありますか?私は何が間違っているのですか?申し訳ありませんが、この検索はまったく新しいもので、私には混乱を招きます。
MainActivity(唯一のアクティビティ):
public class MainActivity extends ActionBarActivity {
Menu mMenu;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
//getSupportActionBar().setDisplayShowTitleEnabled(false);
setContentView(R.layout.activity_main);
handleIntent(getIntent());
}
@Override
protected void onNewIntent(Intent intent) {
handleIntent(intent);
}
private void handleIntent(Intent intent) {
if (Intent.ACTION_SEARCH.equals(intent.getAction())) {
String query = intent.getStringExtra(SearchManager.QUERY);
//use the query to search your data somehow
}
}
@SuppressLint("NewApi")
@Override
public boolean onCreateOptionsMenu(Menu menu) {
mMenu = menu;
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
SearchManager searchManager =
(SearchManager) getSystemService(Context.SEARCH_SERVICE);
SearchView searchView =
(SearchView) menu.findItem(R.id.search).getActionView();
searchView.setSearchableInfo(
searchManager.getSearchableInfo(getComponentName()));
searchView.setIconifiedByDefault(false);
}
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.search:
onSearchRequested();
return true;
default:
return false;
}
}
@SuppressLint("NewApi")
@Override
public boolean onSearchRequested() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
MenuItem mi = mMenu.findItem(R.id.search);
if(mi.isActionViewExpanded()){
mi.collapseActionView();
} else{
mi.expandActionView();
}
} else{
//onOptionsItemSelected(mMenu.findItem(R.id.search));
}
return super.onSearchRequested();
}
}
main.xml(メニューxml):
<menu xmlns:Android="http://schemas.Android.com/apk/res/Android"
xmlns:com.brianco.andypedia="http://schemas.Android.com/apk/res-auto" >
<item Android:id="@+id/search"
Android:title="@string/action_settings"
Android:icon="@drawable/ic_launcher"
Android:actionProviderClass="Android.support.v7.widget.ShareActionProvider"
com.brianco.andypedia:showAsAction="always|collapseActionView"
com.brianco.andypedia:actionViewClass="Android.support.v7.widget.SearchView" />
<item
Android:id="@+id/action_settings"
Android:orderInCategory="100"
Android:showAsAction="never"
Android:title="@string/action_settings"/>
</menu>
searchable.xml:
<?xml version="1.0" encoding="utf-8"?>
<searchable xmlns:Android="http://schemas.Android.com/apk/res/Android"
Android:label="@string/app_name"
Android:hint="@string/search_hint"
Android:voiceSearchMode="showVoiceSearchButton|launchRecognizer" />
マニフェストで:
<application
Android:allowBackup="true"
Android:icon="@drawable/ic_launcher"
Android:label="@string/app_name"
Android:theme="@style/Theme.AppCompat.Light.DarkActionBar" >
<activity
Android:name="com.brianco.andypedia.MainActivity"
Android:label="@string/app_name" >
<intent-filter>
<action Android:name="Android.intent.action.MAIN" />
<category Android:name="Android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action Android:name="Android.intent.action.SEARCH" />
</intent-filter>
<meta-data Android:name="Android.app.searchable" Android:resource="@xml/searchable" />
</activity>
<meta-data Android:name="Android.app.default_searchable"
Android:value=".MainActivity" />
さて、問題はonOptionsItemSelected(MenuItem item)でonSearchRequested()を呼び出すことに関係していました。 SearchViewがある場合、これは冗長であり、古いプラットフォームでのみ呼び出す必要があります。
そこで、Honeycombの下にあるデバイス用に別のメニュー項目を作成しました。新しいデバイスの場合、実行時に削除されます。 SearchViewは、古いデバイスの実行時に削除されます。
以下の更新されたコードを参照してください。
@SuppressLint("NewApi")
@Override
public boolean onCreateOptionsMenu(Menu menu) {
mMenu = menu;
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
//remove old
menu.removeItem(R.id.search_old);
SearchManager searchManager =
(SearchManager) getSystemService(Context.SEARCH_SERVICE);
SearchView searchView =
(SearchView) menu.findItem(R.id.search).getActionView();
searchView.setSearchableInfo(
searchManager.getSearchableInfo(getComponentName()));
searchView.setIconifiedByDefault(false);
} else{
//remove new
menu.removeItem(R.id.search);
}
return true;
}
@Override
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.search_old:
onSearchRequested();
return true;
default:
return false;
}
}
@SuppressLint("NewApi")
@Override
public boolean onSearchRequested() {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.ICE_CREAM_SANDWICH) {
MenuItem mi = mMenu.findItem(R.id.search);
if(mi.isActionViewExpanded()){
mi.collapseActionView();
} else{
mi.expandActionView();
}
} else{
//onOptionsItemSelected(mMenu.findItem(R.id.search));
}
return super.onSearchRequested();
}
From 検索インターフェースの設定 in Androidドキュメント:
検索可能なアクティビティで、onCreate()メソッドでACTION_SEARCHインテントをチェックして処理します。
注:検索可能なアクティビティがシングルトップモード(Android:launchMode = "singleTop")で起動する場合は、onNewIntent()メソッドでACTION_SEARCHインテントも処理します。シングルトップモードでは、アクティビティのインスタンスが1つだけ作成され、アクティビティを開始するための後続の呼び出しによって、スタックに新しいアクティビティが作成されることはありません。この起動モードは、ユーザーが毎回新しいアクティビティインスタンスを作成しなくても、同じアクティビティから検索を実行できるようにするために便利です。
マニフェストファイルの<activity>
に次の属性を追加してみてください。
Android:launchMode="singleTop"
これにより、同じアクティビティが検索インテントを受け取ります。
詳細はこちら: http://developer.Android.com/guide/topics/manifest/activity-element.html
また、<intent-filter>
を2回宣言しているので、それを1つの要素にマージする必要があります。
ありがとう、これは私のために働いた。
マニフェスト:
<activity
Android:name=".Buscar"
Android:configChanges="orientation|screenSize"
Android:label="@string/title_activity_buscar"
Android:launchMode="singleTop">
<intent-filter>
<action Android:name="Android.intent.action.SEARCH" />
</intent-filter>
<meta-data
Android:name="Android.app.searchable"
Android:resource="@xml/searchable" />
</activity>
アクティビティ:
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
// getIntent() should always return the most recent
setIntent(intent);
query = intent.getStringExtra(SearchManager.QUERY);
mysearch(query);
}