Back to project page Weather-app.
The source code is released under:
Apache License
If you think the Android project Weather-app 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 app.sunshine.juanjo.views; /*ww w .j av a 2 s .c o m*/ import android.content.Context; import android.util.AttributeSet; import android.view.View; /** * Created by juanjo on 28/08/14. */ public class MyView extends View { public MyView(Context context) { super(context); } public MyView(Context context, AttributeSet attrs) { super(context, attrs); } public MyView(Context context, AttributeSet attrs, int defaultStyle) { super(context, attrs, defaultStyle); } protected void onMeasure(int wMeasureSpec, int hMeasureSpec) { } }