/* * ****************************************************************************** * Copyright (c) 2013-2014 Gabriele Mariotti. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * ***************************************************************************** */ package it.gmariotti.cardslib.demo.extras.cards; import android.content.Context; import android.view.Gravity; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import android.widget.Toast; import com.squareup.picasso.Picasso; import it.gmariotti.cardslib.demo.extras.R; import it.gmariotti.cardslib.library.internal.Card; import it.gmariotti.cardslib.library.internal.CardExpand; import it.gmariotti.cardslib.library.internal.CardHeader; import it.gmariotti.cardslib.library.internal.CardThumbnail; /** * This class provides a simple card as Google Now Birthday * * @author Gabriele Mariotti (gabri.mariotti@gmail.com) */ public class GoogleNowBirthCard extends Card { public GoogleNowBirthCard(Context context) { super(context); init(); } public GoogleNowBirthCard(Context context, int innerLayout) { super(context, innerLayout); init(); } private void init() { //Add Header GoogleNowBirthHeader header = new GoogleNowBirthHeader(getContext(), R.layout.carddemo_extras_googlenowbirth_inner_header); header.setButtonExpandVisible(true); header.mName = "Gabriele Mariotti"; header.mSubName = "Birthday today"; addCardHeader(header); //Add Expand Area CardExpand expand = new GoogleNowExpandCard(getContext()); addCardExpand(expand); //Set clickListener setOnClickListener(new OnCardClickListener() { @Override public void onClick(Card card, View view) { Toast.makeText(getContext(), "Click Listener card", Toast.LENGTH_LONG).show(); } }); //Add Thumbnail GoogleNowBirthThumb thumbnail = new GoogleNowBirthThumb(getContext()); //You need to set true to use an external library thumbnail.setExternalUsage(true); addCardThumbnail(thumbnail); } @Override public void setupInnerViewElements(ViewGroup parent, View view) { TextView title = (TextView) view.findViewById(R.id.card_main_inner_simple_title); title.setText("Wish Happy Birthday"); title.setTextColor(mContext.getResources().getColor(R.color.carddemo_extras_googlenowbirth_title)); title.setGravity(Gravity.CENTER_VERTICAL); } /** * CardThumbnail. It uses Picasso. */ class GoogleNowBirthThumb extends CardThumbnail { public GoogleNowBirthThumb(Context context) { super(context); } @Override public void setupInnerViewElements(ViewGroup parent, View viewImage) { //thumbnail.setUrlResource("https://plus.google.com/s2/photos/profile/114432517923423045208?sz=250"); //Here you have to set your image with an external library Picasso.with(getContext()).setDebugging(true); Picasso.with(getContext()) .load("https://lh5.googleusercontent.com/-squZd7FxR8Q/UyN5UrsfkqI/AAAAAAAAbAo/VoDHSYAhC_E/s250/new%2520profile%2520%25282%2529.jpg") .into((ImageView)viewImage); viewImage.getLayoutParams().width = 250; viewImage.getLayoutParams().height = 250; } } /** * CardHeader */ class GoogleNowBirthHeader extends CardHeader { String mName; String mSubName; public GoogleNowBirthHeader(Context context, int innerLayout) { super(context, innerLayout); } @Override public void setupInnerViewElements(ViewGroup parent, View view) { TextView txName = (TextView) view.findViewById(R.id.text_extras_birth1); TextView txSubName = (TextView) view.findViewById(R.id.text_extras_birth2); txName.setText(mName); txSubName.setText(mSubName); } } }