HomeSort by relevance Sort by last modified time
    Searched refs:MarginLayoutParams (Results 26 - 50 of 215) sorted by null

12 3 4 5 6 7 8 9

  /packages/services/Car/car-support-lib/src/android/support/car/ui/
MaxWidthLayout.java 86 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();
  /frameworks/base/core/java/com/android/internal/widget/
NotificationActionListLayout.java 117 MarginLayoutParams lp = (MarginLayoutParams) c.getLayoutParams();
142 MarginLayoutParams lp = (MarginLayoutParams) lastNotGoneChild.getLayoutParams();
244 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();
DecorCaptionView.java 259 if (!(params instanceof MarginLayoutParams)) {
261 "params " + params + " must subclass MarginLayoutParams");
377 return new MarginLayoutParams(getContext(), attrs);
382 return new MarginLayoutParams(MarginLayoutParams.MATCH_PARENT,
383 MarginLayoutParams.MATCH_PARENT);
388 return new MarginLayoutParams(p);
393 return p instanceof MarginLayoutParams;
ActionBarContextView.java 292 return new MarginLayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
297 return new MarginLayoutParams(getContext(), attrs);
326 MarginLayoutParams lp = (MarginLayoutParams) mClose.getLayoutParams();
389 MarginLayoutParams lp = (MarginLayoutParams) mClose.getLayoutParams();
DialogViewAnimator.java 110 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();
MessagingLinearLayout.java 280 if (lp instanceof MarginLayoutParams) {
281 copy.copyMarginsFrom((MarginLayoutParams) lp);
309 public static class LayoutParams extends MarginLayoutParams {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
KeyguardStatusBarView.java 90 MarginLayoutParams lp = (MarginLayoutParams) mMultiUserAvatar.getLayoutParams();
95 lp = (MarginLayoutParams) mMultiUserSwitch.getLayoutParams();
102 lp = (MarginLayoutParams) mSystemIconsSuperContainer.getLayoutParams();
113 lp = (MarginLayoutParams) mSystemIconsContainer.getLayoutParams();
122 lp = (MarginLayoutParams) mCarrierLabel.getLayoutParams();
127 lp = (MarginLayoutParams) getLayoutParams();
  /cts/tests/tests/widget/src/android/widget/cts/
LinearLayout_LayoutParamsTest.java 29 import android.view.ViewGroup.MarginLayoutParams;
74 MarginLayoutParams marginLayoutParams = new MarginLayoutParams(320, 200);
75 linearLayoutParams = new LinearLayout.LayoutParams(marginLayoutParams);
RadioGroup_LayoutParamsTest.java 85 mLayoutParams = new RadioGroup.LayoutParams(new ViewGroup.MarginLayoutParams(100, 200));
94 ViewGroup.MarginLayoutParams source = new ViewGroup.MarginLayoutParams(10, 20);
133 new RadioGroup.LayoutParams((ViewGroup.MarginLayoutParams) null);
  /frameworks/support/v7/recyclerview/tests/src/android/support/v7/widget/
GridLayoutManagerCustomSizeInScrollDirectionTest.java 77 ViewGroup.MarginLayoutParams layoutParams = (ViewGroup.MarginLayoutParams)
80 layoutParams = new ViewGroup.MarginLayoutParams(
  /packages/apps/TV/common/src/com/android/tv/common/ui/setup/
SetupGuidedStepFragment.java 27 import android.view.ViewGroup.MarginLayoutParams;
60 MarginLayoutParams marginLayoutParams = (MarginLayoutParams) list.getLayoutParams();
64 marginLayoutParams.rightMargin = doneButtonWidth;
66 marginLayoutParams.leftMargin = doneButtonWidth;
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
PlaybackControlsPresenter.java 28 import android.view.ViewGroup.MarginLayoutParams;
90 ((MarginLayoutParams) mCurrentTime.getLayoutParams()).getMarginStart();
92 ((MarginLayoutParams) mTotalTime.getLayoutParams()).getMarginEnd();
303 MarginLayoutParams lp;
304 lp = (MarginLayoutParams) vh.mCurrentTime.getLayoutParams();
308 lp = (MarginLayoutParams) vh.mTotalTime.getLayoutParams();
FullWidthDetailsOverviewRowPresenter.java 29 import android.view.ViewGroup.MarginLayoutParams;
652 ViewGroup.MarginLayoutParams lp = (ViewGroup.MarginLayoutParams)
732 MarginLayoutParams lpFrame =
733 (MarginLayoutParams) viewHolder.getOverviewView().getLayoutParams();
740 MarginLayoutParams lpDesc = (MarginLayoutParams) description.getLayoutParams();
745 MarginLayoutParams lpActions = (MarginLayoutParams) action.getLayoutParams();
  /frameworks/base/core/java/android/inputmethodservice/
CompactExtractEditLayout.java 80 ViewGroup.MarginLayoutParams lp = (MarginLayoutParams) v.getLayoutParams();
  /frameworks/support/percent/src/android/support/percent/
PercentFrameLayout.java 196 public LayoutParams(MarginLayoutParams source) {
201 super((MarginLayoutParams) source);
PercentLayoutHelper.java 180 if (params instanceof ViewGroup.MarginLayoutParams) {
181 info.fillMarginLayoutParams(view, (ViewGroup.MarginLayoutParams) params,
317 if (params instanceof ViewGroup.MarginLayoutParams) {
318 info.restoreMarginLayoutParams((ViewGroup.MarginLayoutParams) params);
382 /* package */ static class PercentMarginLayoutParams extends ViewGroup.MarginLayoutParams {
495 * {@link #fillMarginLayoutParams(View, ViewGroup.MarginLayoutParams, int, int)}
499 public void fillMarginLayoutParams(ViewGroup.MarginLayoutParams params,
505 * Fills the margin fields of the passed {@link ViewGroup.MarginLayoutParams} object based
509 public void fillMarginLayoutParams(View view, ViewGroup.MarginLayoutParams params,
570 * {@link PercentLayoutHelper.PercentLayoutInfo#fillMarginLayoutParams(View, ViewGroup.MarginLayoutParams, int, int)}
    [all...]
PercentRelativeLayout.java 191 public LayoutParams(MarginLayoutParams source) {
  /packages/apps/Launcher3/src/com/android/launcher3/
LauncherRootView.java 57 MarginLayoutParams lp = (MarginLayoutParams) mAlignedView.getLayoutParams();
  /frameworks/base/tools/layoutlib/create/tests/data/
mock_android.jar 
  /packages/apps/Dialer/java/com/android/dialer/app/widget/
SearchEditTextLayout.java 76 MarginLayoutParams params = (MarginLayoutParams) getLayoutParams();
314 MarginLayoutParams params = (MarginLayoutParams) getLayoutParams();
  /packages/apps/TV/src/com/android/tv/ui/
TvViewUiManager.java 44 import android.view.ViewGroup.MarginLayoutParams;
123 private MarginLayoutParams mTvViewFrame;
124 private MarginLayoutParams mLastAnimatedTvViewFrame;
125 private MarginLayoutParams mOldTvViewFrame;
491 MarginLayoutParams tvViewFrame, boolean animate) {
498 MarginLayoutParams oldTvViewFrame = mTvViewFrame;
552 private void updatePipView(MarginLayoutParams tvViewFrame) {
696 mLastAnimatedTvViewFrame = new MarginLayoutParams(0, 0);
764 MarginLayoutParams tvViewFrame = createMarginLayoutParams(
    [all...]
  /frameworks/base/core/java/android/widget/
FrameLayout.java 224 final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();
388 } else if (lp instanceof MarginLayoutParams) {
389 return new LayoutParams((MarginLayoutParams) lp);
419 public static class LayoutParams extends MarginLayoutParams {
471 public LayoutParams(@NonNull ViewGroup.MarginLayoutParams source) {
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ActionBarContextView.java 232 return new MarginLayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
237 return new MarginLayoutParams(getContext(), attrs);
266 MarginLayoutParams lp = (MarginLayoutParams) mClose.getLayoutParams();
328 MarginLayoutParams lp = (MarginLayoutParams) mClose.getLayoutParams();
  /external/sl4a/InterpreterForAndroid/src/com/googlecode/android_scripting/activity/
Main.java 31 import android.view.ViewGroup.MarginLayoutParams;
124 MarginLayoutParams marginParams =
125 new MarginLayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
  /frameworks/base/packages/SystemUI/src/com/android/keyguard/
KeyguardPasswordView.java 162 if (params instanceof MarginLayoutParams) {
163 final MarginLayoutParams mlp = (MarginLayoutParams) params;

Completed in 988 milliseconds

12 3 4 5 6 7 8 9