Back to project page slidingdebugmenu.
The source code is released under:
Apache License
If you think the Android project slidingdebugmenu 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 co.lemonlabs.android.slidingdebugmenu.views; //from w w w . j ava 2 s . com import android.content.Context; import android.widget.TextView; import co.lemonlabs.android.slidingdebugmenu.R; /** * Created by balysv on 10/01/14. * www.lemonlabs.co */ public class ModuleTitle extends TextView { public ModuleTitle(Context context, String title) { super(context); setTextAppearance(context, R.style.Widget_Sdm_TextView_ModuleTitle); setBackgroundResource(R.drawable.sdm__module_title_bg); setText(title.toUpperCase()); } }