Lines Matching refs:mLogView
51 private LogView mLogView; field in LogFragment
63 mLogView = new LogView(getActivity()); in inflateViews()
66 mLogView.setLayoutParams(logParams); in inflateViews()
67 mLogView.setClickable(true); in inflateViews()
68 mLogView.setFocusable(true); in inflateViews()
69 mLogView.setTypeface(Typeface.MONOSPACE); in inflateViews()
75 mLogView.setPadding(paddingPixels, paddingPixels, paddingPixels, paddingPixels); in inflateViews()
76 mLogView.setCompoundDrawablePadding(paddingPixels); in inflateViews()
78 mLogView.setGravity(Gravity.BOTTOM); in inflateViews()
79 mLogView.setTextAppearance(getActivity(), android.R.style.TextAppearance_Holo_Medium); in inflateViews()
81 mScrollView.addView(mLogView); in inflateViews()
91 mLogView.addTextChangedListener(new TextWatcher() { in onCreateView()
107 return mLogView; in getLogView()