Java Code Examples for android.view.ViewGroup#getPaddingBottom()
The following examples show how to use
android.view.ViewGroup#getPaddingBottom() .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: PrimitiveSimpleAdapter.java From ClassifyView with Apache License 2.0 | 6 votes |
public ViewHolder(View itemView) { super(itemView); if (itemView instanceof CanMergeView) { mCanMergeView = (CanMergeView) itemView; } else if (itemView instanceof ViewGroup) { ViewGroup group = (ViewGroup) itemView; paddingLeft = group.getPaddingLeft(); paddingRight = group.getPaddingRight(); paddingTop = group.getPaddingTop(); paddingBottom = group.getPaddingBottom(); //只遍历一层 寻找第一个符合条件的view for (int i = 0; i < group.getChildCount(); i++) { View child = group.getChildAt(i); if (child instanceof CanMergeView) { mCanMergeView = (CanMergeView) child; break; } } } }
Example 2
Source File: FreeRadioGroup.java From FreeRadioGroup with Apache License 2.0 | 6 votes |
@Override protected void onSizeChanged(int w, int h, int oldw, int oldh) { if (moveable) { ViewGroup parentView = ((ViewGroup) getParent()); MarginLayoutParams lp = (MarginLayoutParams) getLayoutParams(); viewWidth = getRight() - getLeft(); viewHight = getBottom() - getTop(); parentWidth = parentView.getMeasuredWidth(); parentHeight = parentView.getMeasuredHeight(); minLeftMargin = lp.leftMargin; leftPadding = parentView.getPaddingLeft(); rightDistance = lp.rightMargin + parentView.getPaddingRight(); maxLeftMargin = parentWidth - rightDistance - viewWidth - leftPadding; minTopMargin = lp.topMargin; topPadding = parentView.getPaddingTop(); bottomDistance = lp.bottomMargin + parentView.getPaddingBottom(); maxTopMargin = parentHeight - bottomDistance - viewHight - topPadding; } }
Example 3
Source File: CenterLinearLayoutManager.java From ProjectX with Apache License 2.0 | 6 votes |
@Override public void layoutDecorated(@NonNull View child, int left, int top, int right, int bottom) { if (!mCenter) { super.layoutDecorated(child, left, top, right, bottom); return; } final int leftDecorationWidth = getLeftDecorationWidth(child); final int topDecorationHeight = getTopDecorationHeight(child); final int rightDecorationWidth = getRightDecorationWidth(child); final int bottomDecorationHeight = getBottomDecorationHeight(child); final ViewGroup parent = (ViewGroup) child.getParent(); final int offset; if (getOrientation() == HORIZONTAL) { final int contentHeight = parent.getMeasuredHeight() - parent.getPaddingTop() - parent.getPaddingBottom(); offset = (contentHeight - (bottom - top)) / 2; child.layout(left + leftDecorationWidth, top + topDecorationHeight + offset, right - rightDecorationWidth, bottom - bottomDecorationHeight + offset); } else { final int contentWidth = parent.getMeasuredWidth() - parent.getPaddingLeft() - parent.getPaddingRight(); offset = (contentWidth - (right - left)) / 2; child.layout(left + leftDecorationWidth + offset, top + topDecorationHeight, right - rightDecorationWidth + offset, bottom - bottomDecorationHeight); } }
Example 4
Source File: LithoView.java From litho with Apache License 2.0 | 5 votes |
static boolean maybeLogLastMountStart( @Nullable MountStartupLoggingInfo loggingInfo, LithoView lithoView) { if (loggingInfo != null && LithoStartupLogger.isEnabled(loggingInfo.startupLogger) && loggingInfo.firstMountLogged != null && loggingInfo.firstMountLogged[0] && loggingInfo.lastMountLogged != null && !loggingInfo.lastMountLogged[0]) { final ViewGroup parent = (ViewGroup) lithoView.getParent(); if (parent == null) { return false; } if (loggingInfo.isLastAdapterItem || (loggingInfo.isOrientationVertical ? lithoView.getBottom() >= parent.getHeight() - parent.getPaddingBottom() : lithoView.getRight() >= parent.getWidth() - parent.getPaddingRight())) { loggingInfo.startupLogger.markPoint( LithoStartupLogger.LAST_MOUNT, LithoStartupLogger.START, loggingInfo.startupLoggerAttribution); return true; } } return false; }
Example 5
Source File: OverflowAdapter.java From browser with GNU General Public License v2.0 | 5 votes |
/** * 调整位置Padding * @param parent * @param background */ private void setViewPadding(ViewGroup parent, int background) { int[] rect = new int[4]; rect[0] = parent.getPaddingLeft(); rect[1] = parent.getPaddingTop(); rect[2] = parent.getPaddingRight(); rect[3] = parent.getPaddingBottom(); parent.setBackgroundResource(background); parent.setPadding(rect[0], rect[1], rect[2], rect[3]); }
Example 6
Source File: GridCalendarAdapter.java From NCalendar with Apache License 2.0 | 5 votes |
@Override public View getView(int position, View convertView, ViewGroup parent) { View calendarItemView = viewList.get(position); int realHeight = parent.getMeasuredHeight() - parent.getPaddingBottom() - parent.getPaddingTop(); AbsListView.LayoutParams params = new AbsListView.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT, realHeight / (viewList.size() / 7)); calendarItemView.setLayoutParams(params); ((CalendarView2) parent).bindView(position, calendarItemView); return calendarItemView; }
Example 7
Source File: MDRootLayout.java From talk-android with MIT License | 5 votes |
private void invalidateDividersForScrollingView(ViewGroup view, final boolean setForTop, boolean setForBottom, boolean hasButtons) { if (setForTop && view.getChildCount() > 0) { mDrawTopDivider = mTitleBar != null && mTitleBar.getVisibility() != View.GONE && //Not scrolled to the top. view.getScrollY() + view.getPaddingTop() > view.getChildAt(0).getTop(); } if (setForBottom && view.getChildCount() > 0) { mDrawBottomDivider = hasButtons && view.getScrollY() + view.getHeight() - view.getPaddingBottom() < view.getChildAt(view.getChildCount() - 1).getBottom(); } }
Example 8
Source File: CenterLinearLayoutManager.java From ProjectX with Apache License 2.0 | 5 votes |
@Override public void layoutDecoratedWithMargins(@NonNull View child, int left, int top, int right, int bottom) { if (!mCenter) { super.layoutDecoratedWithMargins(child, left, top, right, bottom); return; } final RecyclerView.LayoutParams lp = (RecyclerView.LayoutParams) child.getLayoutParams(); final int leftDecorationWidth = getLeftDecorationWidth(child); final int topDecorationHeight = getTopDecorationHeight(child); final int rightDecorationWidth = getRightDecorationWidth(child); final int bottomDecorationHeight = getBottomDecorationHeight(child); final ViewGroup parent = (ViewGroup) child.getParent(); final int offset; if (getOrientation() == RecyclerView.HORIZONTAL) { final int contentHeight = parent.getMeasuredHeight() - parent.getPaddingTop() - parent.getPaddingBottom(); offset = (contentHeight - (bottom - top)) / 2; child.layout(left + leftDecorationWidth + lp.leftMargin, top + topDecorationHeight + lp.topMargin + offset, right - rightDecorationWidth - lp.rightMargin, bottom - bottomDecorationHeight - lp.bottomMargin + offset); } else { final int contentWidth = parent.getMeasuredWidth() - parent.getPaddingLeft() - parent.getPaddingRight(); offset = (contentWidth - (right - left)) / 2; child.layout(left + leftDecorationWidth + offset + lp.leftMargin, top + topDecorationHeight + lp.topMargin, right - rightDecorationWidth - lp.rightMargin + offset, bottom - bottomDecorationHeight - lp.bottomMargin); } }
Example 9
Source File: MainActivity.java From android-openslmediaplayer with Apache License 2.0 | 5 votes |
private void onDecorViewInitialized() { // measure status bar & navigation bar height final ViewGroup contents = (ViewGroup) findViewById(R.id.activity_contents); final int statusBarOffset = contents.getPaddingTop(); final int navBarOffset = contents.getPaddingBottom(); // apply to navigation drawer mNavigationDrawerFragment.setSystemBarsOffset(statusBarOffset, navBarOffset); }
Example 10
Source File: BaseHolder.java From Expert-Android-Programming with MIT License | 4 votes |
public BaseHolder(LayoutInflater inflater, ViewGroup parent, @LayoutRes int layoutId, boolean isFillParent) { super(inflate(inflater, parent, layoutId)); if (isFillParent && parent != null) { getItemView().getLayoutParams().height = parent.getMeasuredHeight() - (parent.getPaddingTop() + parent.getPaddingBottom()); } }
Example 11
Source File: BaseHolder.java From recyclerview-multistate-section-endless-adapter with Apache License 2.0 | 4 votes |
public BaseHolder(LayoutInflater inflater, ViewGroup parent, @LayoutRes int layoutId, boolean isFillParent) { super(inflate(inflater, parent, layoutId)); if (isFillParent && parent != null) { getItemView().getLayoutParams().height = parent.getMeasuredHeight() - (parent.getPaddingTop() + parent.getPaddingBottom()); } }