|  Known Direct Subclasses | 
Class Overview
Defines a rectangle shape.
 The rectangle can be drawn to a Canvas with its own draw() method,
 but more graphical control is available if you instead pass
 the RectShape to a ShapeDrawable.
 
Summary
| Public Constructors | 
|---|
	 
    
        |  | RectShape() RectShape constructor. | 
| Public Methods | 
|---|
	 
    
        | RectShape | clone() Creates and returns a copy of this Object. | 
	 
    
        | void | draw(Canvas canvas, Paint paint) Draw this shape into the provided Canvas, with the provided Paint. | 
| Protected Methods | 
|---|
	 
    
        | void | onResize(float width, float height) | 
	 
    
        | final
            
            
            RectF | rect() Returns the RectF that defines this rectangle's bounds. | 
| [Expand] Inherited Methods | 
|---|
|  From class
  android.graphics.drawable.shapes.Shape 
  
   
    
    
	 
    
        | Shape | clone() Creates and returns a copy of this Object. |  
        | abstract
            
            
            
            
            void | draw(Canvas canvas, Paint paint) Draw this shape into the provided Canvas, with the provided Paint. |  
        | final
            
            
            float | getHeight() Returns the height of the Shape. |  
        | final
            
            
            float | getWidth() Returns the width of the Shape. |  
        | boolean | hasAlpha() Checks whether the Shape is opaque. |  
        | void | onResize(float width, float height) |  
        | final
            
            
            void | resize(float width, float height) Resizes the dimensions of this shape. |  | 
|  From class
  java.lang.Object 
  
   
    
    
	 
    
        | Object | clone() Creates and returns a copy of this Object. |  
        | boolean | equals(Object o) Compares this instance with the specified object and indicates if they
 are equal. |  
        | void | finalize() Invoked when the garbage collector has detected that this instance is no longer reachable. |  
        | final
            
            
            Class<?> | getClass() Returns the unique instance of  Class that represents this
 object's class. |  
        | int | hashCode() Returns an integer hash code for this object. |  
        | final
            
            
            void | notify() Causes a thread which is waiting on this object's monitor (by means of
 calling one of the wait()methods) to be woken up. |  
        | final
            
            
            void | notifyAll() Causes all threads which are waiting on this object's monitor (by means
 of calling one of the wait()methods) to be woken up. |  
        | String | toString() Returns a string containing a concise, human-readable description of this
 object. |  
        | final
            
            
            void | wait() Causes the calling thread to wait until another thread calls the notify()ornotifyAll()method of this object. |  
        | final
            
            
            void | wait(long millis, int nanos) Causes the calling thread to wait until another thread calls the notify()ornotifyAll()method of this object or until the
 specified timeout expires. |  
        | final
            
            
            void | wait(long millis) Causes the calling thread to wait until another thread calls the notify()ornotifyAll()method of this object or until the
 specified timeout expires. |  | 
 
Public Constructors
Public Methods
 
    
      
    
      
  Creates and returns a copy of this Object. The default
 implementation returns a so-called "shallow" copy: It creates a new
 instance of the same class and then copies the field values (including
 object references) from this instance to the new instance. A "deep" copy,
 in contrast, would also recursively clone nested objects. A subclass that
 needs to implement this kind of cloning should call super.clone()
 to create the new instance and then create deep copies of the nested,
 mutable objects.
 
 
 
    
      
        public 
         
         
         
         
        void
      
      draw
      (Canvas canvas, Paint paint)
    
      
    
      
  Draw this shape into the provided Canvas, with the provided Paint.
 Before calling this, you must call resize(float, float).
      Parameters
      
        
          | canvas | the Canvas within which this shape should be drawn | 
        
          | paint | the Paint object that defines this shape's characteristics | 
      
   
     
 
Protected Methods
 
    
      
        protected 
         
         
         
         
        void
      
      onResize
      (float width, float height)
    
      
    
      
  
  
      Parameters
      
        
          | width | the new width of the Shape | 
        
          | height | the new height of the Shape | 
      
   
     
 
 
    
      
        protected 
         
        final 
         
         
        RectF
      
      rect
      ()
    
      
    
      
  Returns the RectF that defines this rectangle's bounds.