안 드 로 이 드 의 검색 기능 을 어떻게 사용 합 니까?

1380 단어 androidxml
요 며칠 동안 검색 을 사 용 했 는데 깊이 파고 들 지 않 았 습 니 다.절 차 는 대략 이 렇 습 니 다.
1.Activity 에서 onSearch 요청()을 호출 합 니 다.
 
2.AndroidManifest.xml 에 추가
 
<meta-data android:name="android.app.searchable"  android:resource="@xml/searchable"/> 

 
@xml/searchable 은 사용자 정의 입 니 다.내용 은 다음 과 같 습 니 다.
 
<?xml version="1.0" encoding="utf-8"?>   
<searchable xmlns:android="http://schemas.android.com/apk/res/android"  
    android:label="@string/searchLabel" android:hint="@string/searchHint"
    android:voiceSearchMode="showVoiceSearchButton|launchRecognizer"
    >   
</searchable>
 
3.@xml/searchable 의 단 추 를 누 르 면 android Manifest.xml 에 있 는 것 을 검색 합 니 다.
 
<meta-data android:name="android.app.default_searchable" android:value=".SerachActivity" /> 

 
4.SerachActivity 는 사용자 정의 Activity 로 다음 코드 를 통 해
 
Intent intent = getIntent();
String action = intent .getAction();
if (Intent.ACTION_SEARCH.equals(action )) {
	String queryString = intent.getStringExtra(SearchManager.QUERY);//queryString       
}
 절차 가 이 렇 습 니 다.오류 가 있 으 면 지적 해 주세요.감사합니다.

좋은 웹페이지 즐겨찾기