Back to project page ElyTheme.
The source code is released under:
GNU General Public License
If you think the Android project ElyTheme 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.afollestad.cardsui; //w ww .j a va 2 s . co m import android.content.Context; /** * A header centered horizontally with no action button. * * @author Aidan Follestad (afollestad) */ public class CardCenteredHeader extends Card { public CardCenteredHeader(String title) { super(title); } public CardCenteredHeader(Context context, int title) { super(context, title); } @Override public int getLayout() { return R.layout.list_item_header_centered; } @Override public boolean isClickable() { return false; } }