Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DStopwatchLandscapeLayout.java61 private View mLapsListView; field in StopwatchLandscapeLayout
80 mLapsListView = findViewById(R.id.laps_list); in onFinishInflate()
95 if (mLapsListView != null && mLapsListView.getVisibility() != GONE) { in onMeasure()
97 mLapsListView.measure(minWidthSpec, maxHeightSpec); in onMeasure()
100 lapsListWidth = Math.max(mLapsListView.getMeasuredWidth(), halfWidth); in onMeasure()
102 mLapsListView.measure(lapsListWidthSpec, maxHeightSpec); in onMeasure()
129 if (mLapsListView != null && mLapsListView.getVisibility() != GONE) { in onLayout()
131 lapsListWidth = mLapsListView.getMeasuredWidth(); in onLayout()
132 final int lapsListHeight = mLapsListView.getMeasuredHeight(); in onLayout()
145 mLapsListView.layout(lapsListLeft, lapsListTop, lapsListRight, lapsListBottom); in onLayout()