Home
last modified time | relevance | path

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

/pdk/apps/TestingCamera/src/com/android/testingcamera/
DTestingCamera.java117 private TextView mLogView; field in TestingCamera
301 mLogView = (TextView) findViewById(R.id.log); in onCreate()
302 mLogView.setMovementMethod(new ScrollingMovementMethod()); in onCreate()
1810 mLogView.append(logEntry); in logAndScrollToBottom()
1811 final Layout layout = mLogView.getLayout(); in logAndScrollToBottom()
1813 int scrollDelta = layout.getLineBottom(mLogView.getLineCount() - 1) in logAndScrollToBottom()
1814 - mLogView.getScrollY() - mLogView.getHeight(); in logAndScrollToBottom()
1816 mLogView.scrollBy(0, scrollDelta); in logAndScrollToBottom()