Home
last modified time | relevance | path

Searched refs:mRowsSupportFragment (Results 1 – 5 of 5) sorted by relevance

/frameworks/support/leanback/src/main/java/androidx/leanback/app/
DDetailsSupportFragment.java100 mRowsSupportFragment.setEntranceTransitionState(false);
291 if (mRowsSupportFragment == null) { in run()
294 mRowsSupportFragment.setSelectedPosition(mPosition, mSmooth); in run()
331 RowsSupportFragment mRowsSupportFragment; field in DetailsSupportFragment
353 int position = mRowsSupportFragment.getVerticalGridView().getSelectedPosition();
354 int subposition = mRowsSupportFragment.getVerticalGridView().getSelectedSubPosition();
378 if (mRowsSupportFragment != null) { in setAdapter()
379 mRowsSupportFragment.setAdapter(adapter); in setAdapter()
403 if (mRowsSupportFragment != null) { in setOnItemViewClickedListener()
404 mRowsSupportFragment.setOnItemViewClickedListener(listener); in setOnItemViewClickedListener()
[all …]
DSearchSupportFragment.java139 if (mRowsSupportFragment != null
140 && mRowsSupportFragment.getAdapter() != mResultAdapter) {
141 if (!(mRowsSupportFragment.getAdapter() == null && mResultAdapter.size() == 0)) {
142 mRowsSupportFragment.setAdapter(mResultAdapter);
143 mRowsSupportFragment.setSelectedPosition(0);
161 if (mRowsSupportFragment == null) {
182 mRowsSupportFragment.setAdapter(mResultAdapter);
191 + " adapter " + mRowsSupportFragment.getAdapter());
210 RowsSupportFragment mRowsSupportFragment; field in SearchSupportFragment
336 mRowsSupportFragment = new RowsSupportFragment(); in onCreateView()
[all …]
DPlaybackSupportFragment.java122 if (mRowsSupportFragment == null) { in run()
125 mRowsSupportFragment.setSelectedPosition(mPosition, mSmooth); in run()
133 RowsSupportFragment mRowsSupportFragment; field in PlaybackSupportFragment
270 if (mRowsSupportFragment == null) { in getVerticalGridView()
273 return mRowsSupportFragment.getVerticalGridView(); in getVerticalGridView()
731 setVerticalGridViewLayout(mRowsSupportFragment.getVerticalGridView()); in setupChildFragmentLayout()
863 mRowsSupportFragment = (RowsSupportFragment) getChildFragmentManager().findFragmentById( in onCreateView()
865 if (mRowsSupportFragment == null) { in onCreateView()
866 mRowsSupportFragment = new RowsSupportFragment(); in onCreateView()
868 .replace(R.id.playback_controls_dock, mRowsSupportFragment) in onCreateView()
[all …]
/frameworks/support/samples/SupportLeanbackDemos/src/main/java/com/example/android/leanback/
DRowsSupportActivity.java30 private RowsSupportFragment mRowsSupportFragment; field in RowsSupportActivity
38 mRowsSupportFragment = (RowsSupportFragment) getSupportFragmentManager().findFragmentById( in onCreate()
58 mRowsSupportFragment.setTitleHelper(titleHelper); in setupTitleFragment()
/frameworks/support/leanback/src/androidTest/java/androidx/leanback/app/
DDetailsSupportFragmentTest.java648 assertTrue(detailsFragment.mRowsSupportFragment.getView().hasFocus());