暫無描述

EdgeInsets.java 326B

123456789101112131415
  1. package com.th3rdwave.safeareaview;
  2. /* package */ class EdgeInsets {
  3. public float top;
  4. public float right;
  5. public float bottom;
  6. public float left;
  7. public EdgeInsets(float top, float right, float bottom, float left) {
  8. this.top = top;
  9. this.right = right;
  10. this.bottom = bottom;
  11. this.left = left;
  12. }
  13. }