HomeSort by relevance Sort by last modified time
    Searched refs:mItemHeight (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/tests/coretests/src/android/widget/listview/
AdjacentListsWithAdjacentISVsInside.java 103 private final int mItemHeight;
106 mItemHeight = itemHeight;
124 isvLeft.setDesiredHeight(mItemHeight);
127 isvRight.setDesiredHeight(mItemHeight);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryAdapter.java 37 private int mItemHeight;
46 mItemHeight = (int) (context.getResources().getDisplayMetrics().density * 100);
54 mItemHeight = height;
96 new ListView.LayoutParams(mItemWidth, mItemHeight));
109 new ListView.LayoutParams(mItemWidth, mItemHeight));
  /development/samples/training/bitmapfun/src/com/example/android/bitmapfun/ui/
ImageGridFragment.java 205 private int mItemHeight = 0;
281 if (imageView.getLayoutParams().height != mItemHeight) {
298 if (height == mItemHeight) {
301 mItemHeight = height;
303 new GridView.LayoutParams(LayoutParams.MATCH_PARENT, mItemHeight);
  /packages/apps/VideoEditor/src/com/android/videoeditor/
ProjectPickerAdapter.java 56 private int mItemHeight;
69 mItemHeight = (int) mResources.getDimension(R.dimen.project_picker_item_height);
201 new LoadPreviewBitmapTask(this, projectPath, imageView, mItemWidth, mItemHeight,
211 final Bitmap bitmap = Bitmap.createBitmap(mItemWidth, mItemHeight,
215 canvas.drawRect(0, 0, mItemWidth, mItemHeight, paint);
222 final int y = (mItemHeight - newProjectIcon.getHeight()) / 2;
  /cts/tests/tests/widget/src/android/widget/cts/
ScrollViewTest.java 54 private int mItemHeight;
76 mItemHeight = (int) (ITEM_HEIGHT_DPI * density + 0.5f);
80 mScrollBottom = mItemHeight * ITEM_COUNT - mPageHeight;
490 assertEquals(mItemHeight * ITEM_COUNT,
526 final Rect newRect = new Rect(mItemWidth - orgRectSize, mItemHeight - orgRectSize,
527 mItemWidth, mItemHeight);

Completed in 357 milliseconds