Home
last modified time | relevance | path

Searched refs:pageOrientation (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Car/Launcher/libs/appgrid/lib/src/com/android/car/carlauncher/recyclerview/
DAppGridLayoutManager.java34 @PageOrientation int pageOrientation) { in AppGridLayoutManager() argument
35 super(context, isHorizontal(pageOrientation) ? numOfRows : numOfCols, in AppGridLayoutManager()
36 isHorizontal(pageOrientation) in AppGridLayoutManager()
DAppGridAdapter.java84 @PageOrientation int pageOrientation, in AppGridAdapter() argument
88 this(context, numOfCols, numOfRows, pageOrientation, layoutInflater, in AppGridAdapter()
93 @PageOrientation int pageOrientation, in AppGridAdapter() argument
104 mIndexingHelper = new PageIndexingHelper(numOfCols, numOfRows, pageOrientation); in AppGridAdapter()
120 int pageOrientation = context.getResources().getBoolean(R.bool.use_vertical_app_grid) in AppGridAdapter() local
122 mIndexingHelper = new PageIndexingHelper(numOfCols, numOfRows, pageOrientation); in AppGridAdapter()
/packages/apps/Car/Launcher/libs/appgrid/lib/src/com/android/car/carlauncher/
DAppGridConstants.java71 static boolean isHorizontal(int pageOrientation) { in isHorizontal() argument
72 return pageOrientation == PageOrientation.HORIZONTAL; in isHorizontal()