OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mCustomView
(Results
1 - 11
of
11
) sorted by null
/frameworks/base/core/java/com/android/internal/view/
StandaloneActionMode.java
37
private WeakReference<View>
mCustomView
;
88
mCustomView
= view != null ? new WeakReference<View>(view) : null;
124
return
mCustomView
!= null ?
mCustomView
.get() : null;
/development/samples/ApiDemos/src/com/example/android/apis/app/
ActionBarDisplayOptions.java
35
private View
mCustomView
;
52
mCustomView
= getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
55
bar.setCustomView(
mCustomView
,
96
ActionBar.LayoutParams lp = (ActionBar.LayoutParams)
mCustomView
.getLayoutParams();
110
bar.setCustomView(
mCustomView
, lp);
/frameworks/base/core/java/android/webkit/
FindActionModeCallback.java
41
private View
mCustomView
;
53
mCustomView
= LayoutInflater.from(context).inflate(
55
mEditText = (EditText)
mCustomView
.findViewById(
60
mMatches = (TextView)
mCustomView
.findViewById(
205
mode.setCustomView(
mCustomView
);
280
View view = (View)
mCustomView
.getParent();
282
view =
mCustomView
;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActionBarContextView.java
45
private View
mCustomView
;
134
if (
mCustomView
!= null) {
135
removeView(
mCustomView
);
137
mCustomView
= view;
252
mCustomView
= null;
330
if (mTitleLayout != null &&
mCustomView
== null) {
346
if (
mCustomView
!= null) {
347
ViewGroup.LayoutParams lp =
mCustomView
.getLayoutParams();
356
mCustomView
.measure(View.MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
391
if (mTitleLayout != null &&
mCustomView
== null && mTitleLayout.getVisibility() != GONE)
[
all
...]
ScrollingTabContainerView.java
332
private View
mCustomView
;
379
mCustomView
= custom;
388
if (
mCustomView
!= null) {
389
removeView(
mCustomView
);
390
mCustomView
= null;
/development/samples/Support7Demos/src/com/example/android/supportv7/app/
ActionBarDisplayOptions.java
35
private View
mCustomView
;
53
mCustomView
= getLayoutInflater().inflate(R.layout.action_bar_display_options_custom, null);
58
bar.setCustomView(
mCustomView
, mCustomViewLayoutParams);
117
bar.setCustomView(
mCustomView
, lp);
/frameworks/base/core/java/com/android/internal/widget/
ActionBarContextView.java
52
private View
mCustomView
;
144
if (
mCustomView
!= null) {
145
removeView(
mCustomView
);
147
mCustomView
= view;
281
mCustomView
= null;
357
if (mTitleLayout != null &&
mCustomView
== null) {
372
if (
mCustomView
!= null) {
373
ViewGroup.LayoutParams lp =
mCustomView
.getLayoutParams();
382
mCustomView
.measure(MeasureSpec.makeMeasureSpec(customWidth, customWidthMode),
478
if (mTitleLayout != null &&
mCustomView
== null && mTitleLayout.getVisibility() != GONE)
[
all
...]
ScrollingTabContainerView.java
367
private View
mCustomView
;
428
mCustomView
= custom;
435
if (
mCustomView
!= null) {
436
removeView(
mCustomView
);
437
mCustomView
= null;
/packages/apps/Browser/src/com/android/browser/
BaseUi.java
95
private View
mCustomView
;
191
if (
mCustomView
!= null) {
525
if (
mCustomView
!= null) {
535
mCustomView
= view;
545
if (
mCustomView
== null)
551
mCustomView
= null;
559
return
mCustomView
!= null;
571
return
mCustomView
== null;
772
if (
mCustomView
!= null) {
773
mCustomView
.setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE)
[
all
...]
/frameworks/base/core/java/com/android/internal/app/
ActionBarImpl.java
848
private WeakReference<View>
mCustomView
;
918
mCustomView
= new WeakReference<View>(view);
964
return
mCustomView
!= null ?
mCustomView
.get() : null;
[
all
...]
/frameworks/support/v7/appcompat/src/android/support/v7/app/
ActionBarImplBase.java
615
private View
mCustomView
;
640
return
mCustomView
;
645
mCustomView
= view;
734
private WeakReference<View>
mCustomView
;
804
mCustomView
= new WeakReference<View>(view);
850
return
mCustomView
!= null ?
mCustomView
.get() : null;
Completed in 3028 milliseconds