Sherlock ライブラリで searchView を見たいです。これは私の活動です:
public class PointActivity extends SherlockFragmentActivity{
.
.
.
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getSupportMenuInflater().inflate(R.menu.point, menu);
return true;
}
これは私のメニューです:
<menu xmlns:android="http://schemas.android.com/apk/res/android" >
<item
android:id="@+id/menu_search"
android:actionViewClass="com.actionbarsherlock.widget.SearchView"
android:showAsAction="ifRoom|collapseActionView"
android:title="Search"/>
</menu>
検索ビューが常に折りたたまれているのはなぜですか? ありがとう!