Lines Matching refs:mLogView
37 private LogView mLogView; field in LogFragment
50 mLogView = new LogView(getActivity()); in inflateViews()
53 mLogView.setTextAppearance(android.R.style.TextAppearance_Material_Medium); in inflateViews()
54 mLogView.setLayoutParams(logParams); in inflateViews()
55 mLogView.setClickable(true); in inflateViews()
56 mLogView.setFocusable(true); in inflateViews()
57 mLogView.setTypeface(Typeface.create("monospace", Typeface.NORMAL)); in inflateViews()
63 mLogView.setPadding(paddingPixels, paddingPixels, paddingPixels, paddingPixels); in inflateViews()
64 mLogView.setCompoundDrawablePadding(paddingPixels); in inflateViews()
66 mLogView.setGravity(Gravity.BOTTOM); in inflateViews()
68 mScrollView.addView(mLogView); in inflateViews()
78 mLogView.addTextChangedListener(new TextWatcher() { in onCreateView()
94 .smoothScrollTo(0, mScrollView.getBottom() + mLogView.getHeight()); in onCreateView()
103 return mLogView; in getLogView()