Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. import android.content.Context;
  2. import android.util.AttributeSet;
  3. import android.widget.LinearLayout;
  4.  
  5. public class LovelyView extends LinearLayout {
  6.  
  7.     public LovelyView(Context context) {
  8.         super(context);    
  9.     }
  10.  
  11.     public LovelyView(Context context, AttributeSet attrs) {
  12.         super(context, attrs);     
  13.     }
  14.  
  15.     public LovelyView(Context context, AttributeSet attrs, int defStyle) {
  16.         this(context, attrs);      
  17.     }  
  18. }