OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mViewGroup
(Results
1 - 4
of
4
) sorted by null
/cts/tests/tests/view/sdk28/src/android/view/cts/sdk28/
ViewGroupTest.java
41
private MockViewGroup
mViewGroup
;
47
mViewGroup
= new MockViewGroup(mContext);
54
assertFalse(
mViewGroup
.fitSystemWindows(rect));
56
mViewGroup
= new MockViewGroup(mContext);
58
mViewGroup
.addView(mv);
59
assertTrue(
mViewGroup
.fitSystemWindows(rect));
/cts/tests/tests/view/src/android/view/cts/
GestureDetectorCtsActivity.java
42
private ViewGroup
mViewGroup
;
66
mViewGroup
= new ViewGroup(this) {
71
mViewGroup
.addView(mView);
72
mViewGroup
.addView(mTop);
73
mViewGroup
.addView(mButton);
74
mViewGroup
.setOnTouchListener(new MockOnTouchListener());
75
setContentView(
mViewGroup
);
/cts/tests/tests/widget/src/android/widget/cts/
TextViewIsHorizontallyScrollableTest.java
41
private ViewGroup
mViewGroup
;
47
mViewGroup
= (ViewGroup) inflater.inflate(R.layout.textview_isHorizontallyScrollable_layout,
53
final TextView textView =
mViewGroup
.findViewById(
61
final TextView textView =
mViewGroup
.findViewById(
70
final TextView textView =
mViewGroup
.findViewById(
81
final TextView textViewTrue =
mViewGroup
.findViewById(
87
final TextView textViewFalse =
mViewGroup
.findViewById(
94
final TextView textViewDefault =
mViewGroup
.findViewById(
98
final TextView textViewTrue =
mViewGroup
.findViewById(
102
final TextView textViewFalse =
mViewGroup
.findViewById
[
all
...]
/cts/hostsidetests/theme/app/src/android/theme/app/
ThemeDeviceActivity.java
54
private ReferenceViewGroup
mViewGroup
;
92
mViewGroup
= findViewById(R.id.reference_view_group);
146
mViewGroup
.removeAllViews();
151
final LayoutInflater layoutInflater = LayoutInflater.from(
mViewGroup
.getContext());
152
final View view = layoutInflater.inflate(layout.id,
mViewGroup
, false);
158
mViewGroup
.addView(view);
Completed in 63 milliseconds