OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mRootView
(Results
1 - 25
of
43
) sorted by null
1
2
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
BigEditTextActivityNonScrollablePanScan.java
30
private View
mRootView
;
39
mRootView
= new LinearLayout(this);
40
((LinearLayout)
mRootView
).setOrientation(LinearLayout.VERTICAL);
41
mRootView
.setLayoutParams(new ViewGroup.LayoutParams(
46
R.layout.full_screen_edit_text, ((LinearLayout)
mRootView
), false);
48
((LinearLayout)
mRootView
).addView(view);
52
setContentView(
mRootView
);
56
return
mRootView
;
BigEditTextActivityNonScrollableResize.java
30
private View
mRootView
;
39
mRootView
= new LinearLayout(this);
40
((LinearLayout)
mRootView
).setOrientation(LinearLayout.VERTICAL);
41
mRootView
.setLayoutParams(new ViewGroup.LayoutParams(
46
R.layout.full_screen_edit_text, ((LinearLayout)
mRootView
), false);
48
((LinearLayout)
mRootView
).addView(view);
52
setContentView(
mRootView
);
56
return
mRootView
;
BigEditTextActivityScrollablePanScan.java
31
private View
mRootView
;
41
mRootView
= new ScrollView(this);
42
((ScrollView)
mRootView
).setFillViewport(true);
43
mRootView
.setLayoutParams(new ViewGroup.LayoutParams(
54
R.layout.full_screen_edit_text, ((ScrollView)
mRootView
), false);
58
((ScrollView)
mRootView
).addView(mLayout);
61
setContentView(
mRootView
);
65
return
mRootView
;
BigEditTextActivityScrollableResize.java
31
private View
mRootView
;
41
mRootView
= new ScrollView(this);
42
((ScrollView)
mRootView
).setFillViewport(true);
43
mRootView
.setLayoutParams(new ViewGroup.LayoutParams(
54
R.layout.full_screen_edit_text, ((ScrollView)
mRootView
), false);
58
((ScrollView)
mRootView
).addView(mLayout);
61
setContentView(
mRootView
);
65
return
mRootView
;
BottomEditTextActivityPanScan.java
36
private View
mRootView
;
44
mRootView
= new LinearLayout(this);
45
((LinearLayout)
mRootView
).setOrientation(LinearLayout.VERTICAL);
47
View view = getLayoutInflater().inflate(R.layout.one_edit_text_activity, ((LinearLayout)
mRootView
), false);
49
((LinearLayout)
mRootView
).addView(view);
51
setContentView(
mRootView
);
56
return
mRootView
;
BottomEditTextActivityResize.java
36
private View
mRootView
;
44
mRootView
= new LinearLayout(this);
45
((LinearLayout)
mRootView
).setOrientation(LinearLayout.VERTICAL);
47
View view = getLayoutInflater().inflate(R.layout.one_edit_text_activity, ((LinearLayout)
mRootView
), false);
49
((LinearLayout)
mRootView
).addView(view);
51
setContentView(
mRootView
);
56
return
mRootView
;
ButtonActivity.java
33
private View
mRootView
;
72
mRootView
= layout;
76
return
mRootView
;
ManyEditTextActivityNoScrollPanScan.java
41
private View
mRootView
;
48
mRootView
= new LinearLayout(this);
49
((LinearLayout)
mRootView
).setOrientation(LinearLayout.VERTICAL);
56
((LinearLayout)
mRootView
).addView(editText);
58
setContentView(
mRootView
);
63
return
mRootView
;
ManyEditTextActivityScrollPanScan.java
41
private View
mRootView
;
47
mRootView
= new ScrollView(this);
60
((ScrollView)
mRootView
).addView(layout);
61
setContentView(
mRootView
);
66
return
mRootView
;
ManyEditTextActivityScrollResize.java
34
private View
mRootView
;
40
mRootView
= new ScrollView(this);
53
((ScrollView)
mRootView
).addView(layout);
54
setContentView(
mRootView
);
59
return
mRootView
;
OneEditTextActivityNotSelected.java
40
private View
mRootView
;
50
mRootView
= new ScrollView(this);
61
((ScrollView)
mRootView
).addView(layout);
62
setContentView(
mRootView
);
66
return
mRootView
;
OneEditTextActivitySelected.java
39
private View
mRootView
;
49
mRootView
= new ScrollView(this);
56
((ScrollView)
mRootView
).addView(layout);
57
setContentView(
mRootView
);
65
return
mRootView
;
/frameworks/base/core/tests/coretests/src/android/widget/focus/
LinearLayoutGridTest.java
34
private ViewGroup
mRootView
;
42
mRootView
= getActivity().getRootView();
49
mRootView
,
58
mRootView
,
67
mRootView
,
76
mRootView
,
/packages/apps/Settings/src/com/android/settings/applications/
AppOpsSummary.java
38
private View
mRootView
;
98
mRootView
= rootView;
AppOpsDetails.java
57
private View
mRootView
;
63
final View appSnippet =
mRootView
.findViewById(R.id.app_snippet);
189
mRootView
= view;
ProcessStatsDetail.java
68
private View
mRootView
;
100
mRootView
= view;
123
final TextView summary = (TextView)
mRootView
.findViewById(android.R.id.summary);
126
mTitleView = (TextView)
mRootView
.findViewById(android.R.id.title);
128
final TextView text1 = (TextView)
mRootView
.findViewById(android.R.id.text1);
130
final ProgressBar progress = (ProgressBar)
mRootView
.findViewById(android.R.id.progress);
132
final ImageView icon = (ImageView)
mRootView
.findViewById(android.R.id.icon);
137
mTwoButtonsPanel = (ViewGroup)
mRootView
.findViewById(R.id.two_buttons_panel);
138
mForceStopButton = (Button)
mRootView
.findViewById(R.id.right_button);
139
mReportButton = (Button)
mRootView
.findViewById(R.id.left_button)
[
all
...]
RunningServiceDetails.java
70
View
mRootView
;
83
View
mRootView
;
262
detail.
mRootView
= root;
338
detail.
mRootView
= root;
424
mAllDetails.removeView(mActiveDetails.get(i).
mRootView
);
516
mRootView
= view;
/packages/apps/Settings/src/com/android/settings/inputmethod/
UserDictionaryAddWordFragment.java
50
private View
mRootView
;
65
mRootView
= inflater.inflate(R.layout.user_dictionary_add_word_fullscreen, null);
70
mContents = new UserDictionaryAddWordContents(
mRootView
, getArguments());
77
mContents = new UserDictionaryAddWordContents(
mRootView
,
82
return
mRootView
;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/userdictionary/
UserDictionaryAddWordFragment.java
56
private View
mRootView
;
71
mRootView
= inflater.inflate(R.layout.user_dictionary_add_word_fullscreen, null);
76
mContents = new UserDictionaryAddWordContents(
mRootView
, getArguments());
83
mContents = new UserDictionaryAddWordContents(
mRootView
,
88
return
mRootView
;
136
(Spinner)
mRootView
.findViewById(R.id.user_dictionary_add_locale);
/packages/apps/Contacts/src/com/android/contacts/group/
GroupBrowseListFragment.java
82
private View
mRootView
;
111
mRootView
= inflater.inflate(R.layout.group_browse_list_fragment, null);
112
mEmptyView = (TextView)
mRootView
.findViewById(R.id.empty);
118
mListView = (AutoScrollListView)
mRootView
.findViewById(R.id.list);
135
mAddAccountsView =
mRootView
.findViewById(R.id.add_accounts);
136
mAddAccountButton =
mRootView
.findViewById(R.id.add_account_button);
149
return
mRootView
;
GroupDetailFragment.java
100
private View
mRootView
;
153
mRootView
= inflater.inflate(R.layout.group_detail_fragment, container, false);
154
mGroupTitle = (TextView)
mRootView
.findViewById(R.id.group_title);
155
mGroupSize = (TextView)
mRootView
.findViewById(R.id.group_size);
156
mGroupSourceViewContainer = (ViewGroup)
mRootView
.findViewById(
158
mEmptyView =
mRootView
.findViewById(android.R.id.empty);
159
mMemberListView = (ListView)
mRootView
.findViewById(android.R.id.list);
163
return
mRootView
;
/packages/apps/LegacyCamera/src/com/android/camera/ui/
SharePopup.java
65
private View
mRootView
;
145
mRootView
= sharePopup.findViewById(R.id.root);
146
LayoutParams params =
mRootView
.getLayoutParams();
149
mRootView
.setLayoutParams(params);
166
int hPaddingRootView =
mRootView
.getPaddingLeft() +
mRootView
.getPaddingRight();
167
int vPaddingRootView =
mRootView
.getPaddingTop() +
mRootView
.getPaddingBottom();
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RefactoringTest.java
307
testInfo.
mRootView
= rootView;
325
protected CanvasViewInfo
mRootView
;
/packages/apps/Camera2/src/com/android/camera/
PhotoUI.java
76
private View
mRootView
;
194
mRootView
= parent;
197
(ViewGroup)
mRootView
, true);
198
mRenderOverlay = (RenderOverlay)
mRootView
.findViewById(R.id.render_overlay);
199
mFlashOverlay =
mRootView
.findViewById(R.id.flash_overlay);
200
mPreviewCover =
mRootView
.findViewById(R.id.preview_cover);
202
mTextureView = (TextureView)
mRootView
.findViewById(R.id.preview_content);
207
mShutterButton = (ShutterButton)
mRootView
.findViewById(R.id.shutter_button);
208
mSwitcher = (ModuleSwitcher)
mRootView
.findViewById(R.id.camera_switcher);
211
mMenuButton =
mRootView
.findViewById(R.id.menu)
[
all
...]
WideAnglePanoramaUI.java
64
private ViewGroup
mRootView
;
101
mRootView
= root;
104
mSwitcher = (ModuleSwitcher)
mRootView
.findViewById(R.id.camera_switcher);
295
mRootView
.bringChildToFront(mCameraControls);
347
inflator.inflate(R.layout.panorama_module,
mRootView
, true);
354
mPreviewCover =
mRootView
.findViewById(R.id.preview_cover);
355
mPreviewLayout =
mRootView
.findViewById(R.id.pano_preview_layout);
356
mReviewControl = (ViewGroup)
mRootView
.findViewById(R.id.pano_review_control);
357
mReviewLayout =
mRootView
.findViewById(R.id.pano_review_layout);
358
mReview = (ImageView)
mRootView
.findViewById(R.id.pano_reviewarea)
[
all
...]
Completed in 925 milliseconds
1
2