Back to project page umbrella.alert.
The source code is released under:
GNU General Public License
If you think the Android project umbrella.alert 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 macbury.umbrella.cards; // w w w . j a va2 s .co m import android.content.Context; import android.view.View; import android.view.ViewGroup; import com.androidquery.AQuery; import it.gmariotti.cardslib.library.internal.Card; import macbury.umbrella.R; /** * Created by macbury on 28.08.14. */ public class AboutCard extends Card { private AQuery query; public AboutCard(Context context) { super(context, R.layout.about_card_view); } @Override public void setupInnerViewElements(ViewGroup parent, View view) { super.setupInnerViewElements(parent, view); query = new AQuery(view); } }