OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:contentView
(Results
1 - 11
of
11
) sorted by null
/cts/tests/tests/view/src/android/view/cts/
ActionModeCtsActivity.java
26
public View
contentView
;
32
contentView
= new FrameLayout(this);
33
setContentView(
contentView
);
/developers/build/prebuilts/gradle/CustomNotifications/Application/src/main/java/com/example/android/customnotifications/
MainActivity.java
76
RemoteViews
contentView
= new RemoteViews(getPackageName(), R.layout.notification);
81
contentView
.setTextViewText(R.id.textView, text);
88
notification.
contentView
=
contentView
;
92
// (The normal
contentView
is shown when the notification is collapsed, when expanded the
/developers/samples/android/notification/CustomNotifications/Application/src/main/java/com/example/android/customnotifications/
MainActivity.java
76
RemoteViews
contentView
= new RemoteViews(getPackageName(), R.layout.notification);
81
contentView
.setTextViewText(R.id.textView, text);
88
notification.
contentView
=
contentView
;
92
// (The normal
contentView
is shown when the notification is collapsed, when expanded the
/development/samples/browseable/CustomNotifications/src/com.example.android.customnotifications/
MainActivity.java
76
RemoteViews
contentView
= new RemoteViews(getPackageName(), R.layout.notification);
81
contentView
.setTextViewText(R.id.textView, text);
88
notification.
contentView
=
contentView
;
92
// (The normal
contentView
is shown when the notification is collapsed, when expanded the
/development/samples/devbytes/ui/ImmersiveMode/src/main/java/com/example/android/immersive/
ImmersiveActivity.java
38
final View
contentView
= findViewById(R.id.fullscreen_content);
51
contentView
.setClickable(true);
66
contentView
.setOnTouchListener(new View.OnTouchListener() {
/development/samples/ApiDemos/src/com/example/android/apis/app/
StatusBarNotifications.java
222
// can set the
contentView
field to your own RemoteViews object.
236
RemoteViews
contentView
= new RemoteViews(getPackageName(), R.layout.status_bar_balloon);
237
contentView
.setTextViewText(R.id.text, text);
238
contentView
.setImageViewResource(R.id.icon, moodId);
239
notif.
contentView
=
contentView
;
/external/sl4a/Utils/src/com/googlecode/android_scripting/
Log.java
79
note.
contentView
.getLayoutId();
/developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/
FullscreenActivity.java
140
final View
contentView
= findViewById(R.id.fullscreen_content);
153
mSystemUiHider = SystemUiHider.getInstance(this,
contentView
, HIDER_FLAGS);
194
contentView
.setOnClickListener(new View.OnClickListener() {
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
ShadowTabHost.java
136
private View
contentView
;
212
contentView
= factory.createTabContent(this.tag);
227
return
contentView
;
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
ShadowActivityTest.java
512
View
contentView
= activity.findViewById(android.R.id.content);
513
assertThat(((ViewGroup)
contentView
).getChildCount()).isEqualTo(2);
557
View
contentView
= new View(activity);
558
activity.setContentView(
contentView
);
561
assertThat(contentViewContainer.getChildAt(0)).isSameAs(
contentView
);
[
all
...]
/cts/tests/tests/widget/src/android/widget/cts/
PopupWindowTest.java
138
TextView
contentView
= new TextView(mActivity);
139
mPopupWindow = new PopupWindow(
contentView
);
140
assertSame(
contentView
, mPopupWindow.getContentView());
142
mPopupWindow = new PopupWindow(
contentView
, 0, 0);
145
assertSame(
contentView
, mPopupWindow.getContentView());
147
mPopupWindow = new PopupWindow(
contentView
, 50, 50);
150
assertSame(
contentView
, mPopupWindow.getContentView());
152
mPopupWindow = new PopupWindow(
contentView
, -1, -1);
155
assertSame(
contentView
, mPopupWindow.getContentView());
157
mPopupWindow = new PopupWindow(
contentView
, 0, 0, true)
[
all
...]
Completed in 387 milliseconds