/aosp14/frameworks/base/core/tests/coretests/src/com/android/internal/view/ |
H A D | RecyclerViewCaptureHelperTest.java | 26 import com.android.internal.widget.LinearLayoutManager; 49 LinearLayoutManager layoutManager = in createScrollableContent() 50 new LinearLayoutManager(parent.getContext(), LinearLayoutManager.VERTICAL, false); in createScrollableContent()
|
/aosp14/frameworks/base/tests/UiBench/src/com/android/test/uibench/ |
H A D | SlowNestedRecyclerViewActivity.java | 23 import androidx.recyclerview.widget.LinearLayoutManager; 68 return new LinearLayoutManager(this, LinearLayoutManager.VERTICAL, false); in createLayoutManager() 152 rv.setLayoutManager(new LinearLayoutManager(parent.getContext(), in onCreateViewHolder() 153 LinearLayoutManager.HORIZONTAL, false)); in onCreateViewHolder()
|
/aosp14/frameworks/base/tests/FlickerTests/test-apps/flickerapp/src/com/android/server/wm/flicker/testapp/ |
H A D | MailListFragment.java | 25 import androidx.recyclerview.widget.LinearLayoutManager; 45 mLayoutManager = new LinearLayoutManager(getActivity()); in onCreateView()
|
/aosp14/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/pip/tv/ |
H A D | TvPipMenuView.java | 54 import com.android.internal.widget.LinearLayoutManager; 76 private final LinearLayoutManager mButtonLayoutManager; 120 mButtonLayoutManager = new LinearLayoutManager(mContext); in TvPipMenuView() 229 vertical != (mButtonLayoutManager.getOrientation() == LinearLayoutManager.VERTICAL); in onPipTransitionToTargetBoundsStarted() 246 ? LinearLayoutManager.VERTICAL : LinearLayoutManager.HORIZONTAL); in onPipTransitionToTargetBoundsStarted() 267 ? LinearLayoutManager.VERTICAL : LinearLayoutManager.HORIZONTAL); in onPipTransitionFinished()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/mediaprojection/appselector/view/ |
H A D | MediaProjectionRecentsViewController.kt | 27 import androidx.recyclerview.widget.LinearLayoutManager 106 LinearLayoutManager( 108 LinearLayoutManager.HORIZONTAL,
|
/aosp14/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/screenshot/ |
H A D | RecyclerViewActivity.java | 30 import com.android.internal.widget.LinearLayoutManager; 44 recyclerView.setLayoutManager(new LinearLayoutManager(this)); in onCreate()
|
/aosp14/frameworks/base/tests/UiBench/src/com/android/test/uibench/recyclerview/ |
H A D | RvCompatListActivity.java | 28 import androidx.recyclerview.widget.LinearLayoutManager; 71 return new LinearLayoutManager(context); in createLayoutManager()
|
/aosp14/frameworks/base/packages/CompanionDeviceManager/src/com/android/companiondevicemanager/ |
H A D | CompanionDeviceActivity.java | 82 import androidx.recyclerview.widget.LinearLayoutManager; 181 private LinearLayoutManager mPermissionsLayoutManager = new LinearLayoutManager(this); 564 mDeviceListRecyclerView.setLayoutManager(new LinearLayoutManager(this)); in initUiForMultipleDevices() 706 LinearLayoutManager layoutManager = in setupPermissionList() 707 (LinearLayoutManager) mPermissionListRecyclerView in setupPermissionList()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/controls/management/ |
H A D | ControlsProviderSelectorActivity.kt | 36 import androidx.recyclerview.widget.LinearLayoutManager 108 recyclerView.layoutManager = LinearLayoutManager(applicationContext)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/wallet/ui/ |
H A D | WalletCardCarousel.java | 35 import androidx.recyclerview.widget.LinearLayoutManager; 118 setLayoutManager(new LinearLayoutManager(context, LinearLayoutManager.HORIZONTAL, false)); in WalletCardCarousel()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/accessibility/floatingmenu/ |
H A D | MenuView.java | 36 import androidx.recyclerview.widget.LinearLayoutManager; 83 mTargetFeaturesView.setLayoutManager(new LinearLayoutManager(context)); in MenuView()
|
/aosp14/frameworks/base/core/tests/batterystatstests/BatteryStatsViewer/src/com/android/frameworks/core/batterystatsviewer/ |
H A D | BatteryConsumerPickerActivity.java | 37 import androidx.recyclerview.widget.LinearLayoutManager; 77 mAppList.setLayoutManager(new LinearLayoutManager(this)); in onCreate()
|
H A D | BatteryStatsViewerActivity.java | 37 import androidx.recyclerview.widget.LinearLayoutManager; 89 mBatteryConsumerDataView.setLayoutManager(new LinearLayoutManager(this)); in onCreate()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/ |
H A D | VolumePanelDialog.java | 42 import androidx.recyclerview.widget.LinearLayoutManager; 121 mVolumePanelSlices.setLayoutManager(new LinearLayoutManager(getContext())); in onCreate()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/tuner/ |
H A D | LockscreenFragment.java | 39 import androidx.recyclerview.widget.LinearLayoutManager; 100 v.setLayoutManager(new LinearLayoutManager(getContext())); in showSelectDialog()
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/media/dialog/ |
H A D | MediaOutputBaseDialog.java | 58 import androidx.recyclerview.widget.LinearLayoutManager; 200 private class LayoutManagerWrapper extends LinearLayoutManager {
|
/aosp14/frameworks/base/core/java/com/android/internal/widget/ |
H A D | LinearLayoutManager.java | 40 public class LinearLayoutManager extends RecyclerView.LayoutManager implements class 152 public LinearLayoutManager(Context context) { in LinearLayoutManager() method in LinearLayoutManager 162 public LinearLayoutManager(Context context, int orientation, boolean reverseLayout) { in LinearLayoutManager() method in LinearLayoutManager 172 public LinearLayoutManager(Context context, AttributeSet attrs, int defStyleAttr, in LinearLayoutManager() method in LinearLayoutManager
|
H A D | GridLayoutManager.java | 41 public class GridLayoutManager extends LinearLayoutManager {
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/ |
H A D | FgsManagerController.kt | 49 import androidx.recyclerview.widget.LinearLayoutManager 385 recyclerView.layoutManager = LinearLayoutManager(dialogContext)
|
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/tiles/dialog/ |
H A D | InternetDialog.java | 55 import androidx.recyclerview.widget.LinearLayoutManager; 255 mWifiRecyclerView.setLayoutManager(new LinearLayoutManager(mContext)); in onCreate()
|
/aosp14/frameworks/base/core/java/com/android/internal/widget/helper/ |
H A D | ItemTouchHelper.java | 37 import com.android.internal.widget.LinearLayoutManager;
|