Back to project page drive-android-svg.
The source code is released under:
Apache License
If you think the Android project drive-android-svg listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.goodow.drive.android.svg.view; //from w w w. j ava2 s . co m import android.content.Context; import android.util.AttributeSet; import android.widget.LinearLayout; /** * Created by liudenghui on 14-6-17. */ public class MyView extends LinearLayout { public MyView(Context context) { super(context); } public MyView(Context context, AttributeSet attrs) { super(context, attrs); } public MyView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } }