1. 程式人生 > 其它 >成品直播原始碼,實現在平臺內部的搜尋

成品直播原始碼,實現在平臺內部的搜尋

成品直播原始碼,實現平臺內部搜尋的相關程式碼

xml


<androidx.appcompat.widget.SearchView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/searchView"
app:queryHint="請輸入內容"
/>

java


searchView.setSubmitButtonEnabled(true);//顯示搜尋按鈕
searchView.setQueryHint("請輸入搜尋服務內容");
searchView.setIconifiedByDefault(false);
//搜尋事件
searchView.setOnQueryTextListener(new SearchView.OnQueryTextListener() {
@Override
public boolean onQueryTextSubmit(String query) {
Toast.makeText(getContext(), query+"", Toast.LENGTH_SHORT).show();
searchView.setQuery("",false);
return false;
}

@Override
public boolean onQueryTextChange(String newText) {
return false;
}
});

以上就是 成品直播原始碼,實現平臺內部搜尋的相關程式碼,更多內容歡迎關注之後的文章