/* * ****************************************************************************** * 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.View; import android.view.ViewGroup; import android.widget.TextView; import it.gmariotti.cardslib.demo.extras.R; import it.gmariotti.cardslib.library.internal.CardExpand; /** * This class provides a simple example of expand area * * @author Gabriele Mariotti (gabri.mariotti@gmail.com) */ public class GoogleNowExpandCard extends CardExpand { public GoogleNowExpandCard(Context context) { super(context, R.layout.carddemo_extras_googlenow_inner_expand); } @Override public void setupInnerViewElements(ViewGroup parent, View view) { if (view == null) return; //Retrieve TextView elements TextView tx1 = (TextView) view.findViewById(R.id.carddemo_extras_expand_text1); TextView tx2 = (TextView) view.findViewById(R.id.carddemo_extras_expand_text2); TextView tx3 = (TextView) view.findViewById(R.id.carddemo_extras_expand_text3); TextView tx4 = (TextView) view.findViewById(R.id.carddemo_extras_expand_text4); if (tx1 != null) { tx1.setText("Lorem ipsum dolor sit amet, consectetur adipisici elit..."); } if (tx2 != null) { tx2.setText("Quis aute iure reprehenderit in voluptate velit esse cillum .."); } } }