Back to project page nxt-remote-controller.
The source code is released under:
MIT License
If you think the Android project nxt-remote-controller 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.gc.materialdesign.views; /*w ww . jav a 2 s .com*/ import android.content.Context; import android.util.AttributeSet; /** * @tips :????????????????????? * @date :2014-11-1 */ public class ButtonFloatSmall extends ButtonFloat { public ButtonFloatSmall(Context context, AttributeSet attrs) { super(context, attrs); } @Override protected void onInitDefaultValues() { super.onInitDefaultValues(); /** * ?????????????????????????????????super????? * ????????????????????super?????super?????????????????????????? */ sizeRadius = 20; rippleSize = 8; minWidth = sizeRadius * 2;// 40dp minHeight = sizeRadius * 2;// 40dp } }