HomeSort by relevance Sort by last modified time
    Searched defs:addView (Results 1 - 25 of 483) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
QuickTileLayout.java 22 public void addView(View child, int index, ViewGroup.LayoutParams params) {
26 super.addView(child, index, params);
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
MultiLayersActivity.java 38 grid.addView(row1, new LinearLayout.LayoutParams(
43 grid.addView(row2, new LinearLayout.LayoutParams(
46 row1.addView(new LayerView(this, 0xffff0000), new LinearLayout.LayoutParams(
48 row1.addView(new LayerView(this, 0x0f00ff00), new LinearLayout.LayoutParams(
51 row2.addView(new LayerView(this, 0x0f0000ff), new LinearLayout.LayoutParams(
53 row2.addView(new LayerView(this, 0xffffff00), new LinearLayout.LayoutParams(
SimplePathsActivity.java 33 layout.addView(text, new FrameLayout.LayoutParams(600, 350, Gravity.CENTER));
VideoViewCaptureActivity.java 79 layout.addView(button, LinearLayout.LayoutParams.MATCH_PARENT,
81 layout.addView(mVideoView, LinearLayout.LayoutParams.MATCH_PARENT,
84 content.addView(layout, new FrameLayout.LayoutParams(
MarqueeActivity.java 42 linearLayout.addView(text1, new LinearLayout.LayoutParams(
52 linearLayout.addView(text2, params);
  /frameworks/base/core/java/android/view/
ViewManager.java 34 public void addView(View view, ViewGroup.LayoutParams params);
WindowManagerImpl.java 90 public void addView(@NonNull View view, @NonNull ViewGroup.LayoutParams params) {
92 mGlobal.addView(view, params, mContext.getDisplay(), mParentWindow);
  /frameworks/base/core/java/android/widget/
TextSwitcher.java 61 public void addView(View child, int index, ViewGroup.LayoutParams params) {
67 super.addView(child, index, params);
ViewSwitcher.java 62 public void addView(View child, int index, ViewGroup.LayoutParams params) {
66 super.addView(child, index, params);
90 addView(child, lp);
97 * {@link #addView(android.view.View, int, android.view.ViewGroup.LayoutParams)}
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
MockView.java 54 addView(mView);
60 public void addView(View child) {
62 super.addView(child);
67 public void addView(View child, int index) {
69 super.addView(child, index);
74 public void addView(View child, int width, int height) {
76 super.addView(child, width, height);
81 public void addView(View child, ViewGroup.LayoutParams params) {
83 super.addView(child, params);
88 public void addView(View child, int index, ViewGroup.LayoutParams params)
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/widget/
FrameLayoutWithOverlay.java 38 addView(mOverlay);
43 public void addView(View child, int index, ViewGroup.LayoutParams params) {
44 super.addView(child, index, params);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
TableLayout8.java 66 row.addView(label, new TableRow.LayoutParams(1));
67 row.addView(shortcut, new TableRow.LayoutParams());
69 table.addView(row, new TableLayout.LayoutParams());
TableLayout7.java 75 row.addView(label, new TableRow.LayoutParams(1));
76 row.addView(shortcut, new TableRow.LayoutParams());
78 table.addView(row, new TableLayout.LayoutParams());
ScrollView2.java 45 layout.addView(textView, p);
49 layout.addView(buttonView, p);
  /frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/
TemplateLayout.java 49 * will be added to when {@link #addView(View)} is called.
128 public void addView(View child, int index, ViewGroup.LayoutParams params) {
129 mContainer.addView(child, index, params);
133 super.addView(child, -1, generateDefaultLayoutParams());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
ReverseLinearLayout.java 50 public void addView(View child) {
53 super.addView(child, 0);
55 super.addView(child);
60 public void addView(View child, ViewGroup.LayoutParams params) {
63 super.addView(child, 0, params);
65 super.addView(child, params);
97 super.addView(childList.get(i));
  /packages/apps/TV/src/com/android/tv/tuner/cc/
CaptionLayout.java 50 addView(mSafeTitleAreaLayout, new ScaledLayoutParams(
59 mSafeTitleAreaLayout.addView(captionWindowLayout, scaledLayoutParams);
  /cts/hostsidetests/services/activityandwindowmanager/windowmanager/alertwindowappsdk25/src/android/server/alertwindowappsdk25/
AlertWindowTestBaseActivity.java 68 wm.addView(view, params);
  /development/samples/training/AnimationsDemo/src/com/example/android/animationsdemo/
LayoutChangesActivity.java 106 mContainerView.addView(newView, 0);
  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/view/
TestWindowManager.java 19 public void addView(View view, android.view.ViewGroup.LayoutParams layoutParams) {
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
ViewInnerTextTest.java 28 top.addView(textView("blah"));
29 top.addView(new View(activity));
30 top.addView(textView("a b c"));
33 top.addView(innerLayout);
35 innerLayout.addView(textView("d e f"));
36 innerLayout.addView(textView("g h i"));
37 innerLayout.addView(textView(""));
38 innerLayout.addView(textView(null));
39 innerLayout.addView(textView("jkl!"));
41 top.addView(textView("mnop"))
    [all...]
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
TestResultActivity.java 54 linearLayout.addView(
  /frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
GridLayoutTest.java 45 container.addView(v, lp);
LayoutInsetsTest.java 45 p.addView(c, lp);
LinearLayoutTest.java 39 container.addView(v, lp);

Completed in 1869 milliseconds

1 2 3 4 5 6 7 8 91011>>