SearchBar
我在我的电视应用程序中使用自定义搜索屏幕,我的问题是在启动片段时我无法将焦点设置在视图上。我尝试了以下方法:
mSearchBar.setFocusable(true);
mSearchBar.requestFocus();
也在xml中尝试过
<android.support.v17.leanback.widget.SearchBar
android:id="@+id/search_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:clipChildren="false"
android:focusable="true">
<requestFocus />
</android.support.v17.leanback.widget.SearchBar>
和这个
mSearchBar.setSearchQuery("");
以上没有设置焦点SearchBar