/* * ****************************************************************************** * 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.cards; import android.content.Context; import android.view.View; import android.view.ViewGroup; import android.widget.TextView; import it.gmariotti.cardslib.demo.R; import it.gmariotti.cardslib.library.internal.CardExpand; /** * This class provides an example of custom expand/collapse area. * It uses carddemo_example_inner_expand layout. * <p/> * You have to override the {@link #setupInnerViewElements(android.view.ViewGroup, android.view.View)}); * * @author Gabriele Mariotti (gabri.mariotti@gmail.com) */ public class CustomExpandCard extends CardExpand { int count; public CustomExpandCard(Context context) { super(context, R.layout.carddemo_example_native_inner_expand); } public CustomExpandCard(Context context,int i) { super(context, R.layout.carddemo_example_native_inner_expand); count = i; } //You can set you properties here (example buttons visibility) @Override public void setupInnerViewElements(ViewGroup parent, View view) { if (view == null) return; //Retrieve TextView elements TextView tx1 = (TextView) view.findViewById(R.id.carddemo_expand_text1); TextView tx2 = (TextView) view.findViewById(R.id.carddemo_expand_text2); TextView tx3 = (TextView) view.findViewById(R.id.carddemo_expand_text3); TextView tx4 = (TextView) view.findViewById(R.id.carddemo_expand_text4); //Set value in text views if (tx1 != null) { if (count % 2 ==0) tx1.setText(getContext().getString(R.string.demo_expand_customtitle1)); else tx1.setText(getContext().getString(R.string.demo_expand_customtitle3)); } if (tx2 != null) { tx2.setText(getContext().getString(R.string.demo_expand_customtitle2)); } } }