Home | History | Annotate | Download | only in drawable

Lines Matching defs:Gravity

30 import android.view.Gravity;
38 * and height based on the level, as well as a gravity to control where it is
68 * Creates a new clip drawable with the specified gravity and orientation.
71 * @param gravity gravity constant (see {@link Gravity} used to position
76 public ClipDrawable(Drawable drawable, int gravity, int orientation) {
79 mState.mGravity = gravity;
197 Gravity.apply(mState.mGravity, w, h, bounds, r, layoutDirection);
217 int mGravity = Gravity.LEFT;