/* * ****************************************************************************** * 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.fragment.nativeview; import android.os.Build; import android.os.Bundle; import android.view.LayoutInflater; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.widget.PopupMenu; import android.widget.ScrollView; import android.widget.Toast; import it.gmariotti.cardslib.demo.R; import it.gmariotti.cardslib.demo.cards.CustomExpandCard; import it.gmariotti.cardslib.demo.cards.CustomHeaderExample1; import it.gmariotti.cardslib.demo.cards.CustomHeaderInnerCard; import it.gmariotti.cardslib.demo.fragment.BaseMaterialFragment; import it.gmariotti.cardslib.library.Constants; 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.base.BaseCard; import it.gmariotti.cardslib.library.view.CardViewNative; /** * Card Header Examples * * @author Gabriele Mariotti (gabri.mariotti@gmail.com) */ public class NativeHeaderFragment extends BaseMaterialFragment { protected ScrollView mScrollView; @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View mRootView = inflater.inflate(R.layout.demo_fragment_native_header, container, false); return mRootView; } @Override public void onActivityCreated(Bundle savedInstanceState) { super.onActivityCreated(savedInstanceState); mScrollView = (ScrollView) getActivity().findViewById(R.id.card_scrollview); initCards(); } @Override protected int getSubTitleHeaderResourceId() { return R.string.header_title_cardheadersubtitle; } @Override protected int getTitleHeaderResourceId() { return R.string.header_title_group1; } @Override protected String getDocUrl() { return "https://github.com/gabrielemariotti/cardslib/blob/master/doc/HEADER.md"; } @Override protected String getSourceUrl() { return "https://github.com/gabrielemariotti/cardslib/blob/master/demo/stock/src/main/java/it/gmariotti/cardslib/demo/fragment/nativeview/NativeHeaderFragment.java"; } private void initCards() { init_standard_header_without_buttons(); init_standard_header_with_overflow_button(); init_standard_header_with_overflow_button_dynamic_menu(); init_standard_header_with_overflow_button_dynamic_menu_without_xml(); init_standard_header_with_expandcollapse_button(); init_standard_header_with_expandcollapse_button_custom_area(); init_standard_header_with_custom_other_button(); init_standard_header_with_custom_other_button_programmatically(); init_header_with_custom_inner_layout(); init_header_with_custom_layout(); init_header_buttonleft(); } /** * This method builds a standard header without buttons */ private void init_standard_header_without_buttons() { //Create a Card Card card = new Card(getActivity()); //Create a CardHeader CardHeader header = new CardHeader(getActivity()); //Set the header title header.setTitle(getString(R.string.demo_header_basetitle)); card.addCardHeader(header); //Set card in the CardViewNative CardViewNative cardView = (CardViewNative) getActivity().findViewById(R.id.carddemo_header_std); cardView.setCard(card); } /** * This method builds a standard header with overflow button */ private void init_standard_header_with_overflow_button() { //Create a Card Card card = new Card(getActivity()); //Create a CardHeader CardHeader header = new CardHeader(getActivity()); //Set the header title header.setTitle(getString(R.string.demo_header_basetitle)); //Add a popup menu. This method set OverFlow button to visible header.setPopupMenu(R.menu.popupmain, new CardHeader.OnClickCardHeaderPopupMenuListener() { @Override public void onMenuItemClick(BaseCard card, MenuItem item) { Toast.makeText(getActivity(), "Click on " + item.getTitle(), Toast.LENGTH_SHORT).show(); } }); card.addCardHeader(header); //Set card in the CardViewNative CardViewNative cardViewNative = (CardViewNative) getActivity().findViewById(R.id.carddemo_header_overflow); cardViewNative.setCard(card); } /** * This method builds a standard header with overflow button with a dynamic menu */ private void init_standard_header_with_overflow_button_dynamic_menu() { //Create a Card Card card = new Card(getActivity()); //Create a CardHeader CardHeader header = new CardHeader(getActivity()); //Set the header title header.setTitle(getString(R.string.demo_header_basetitle)); //Add a popup menu. This method set OverFlow button to visible header.setPopupMenu(R.menu.popupmain, new CardHeader.OnClickCardHeaderPopupMenuListener() { @Override public void onMenuItemClick(BaseCard card, MenuItem item) { Toast.makeText(getActivity(), "Click on " + item.getTitle(), Toast.LENGTH_SHORT).show(); } }); //Add a PopupMenuPrepareListener to add dynamically a menu entry //it is optional. header.setPopupMenuPrepareListener(new CardHeader.OnPrepareCardHeaderPopupMenuListener() { @Override public boolean onPreparePopupMenu(BaseCard card, PopupMenu popupMenu) { popupMenu.getMenu().add("Dynamic item"); //You can remove an item with this code //popupMenu.getMenu().removeItem(R.id.action_settings); //return false; You can use return false to hidden the button and the popup return true; } }); card.addCardHeader(header); //Set card in the CardViewNative CardViewNative cardViewNative = (CardViewNative) getActivity().findViewById(R.id.carddemo_header_overflow_dynamic); cardViewNative.setCard(card); } /** * This method builds a standard header with overflow button with a dynamic menu */ private void init_standard_header_with_overflow_button_dynamic_menu_without_xml() { //Create a Card Card card = new Card(getActivity()); //Create a CardHeader CardHeader header = new CardHeader(getActivity()); //Set the header title header.setTitle(getString(R.string.demo_header_basetitle)); //Add a popup menu. This method set OverFlow button to visible header.setButtonOverflowVisible(true); header.setPopupMenuListener(new CardHeader.OnClickCardHeaderPopupMenuListener() { @Override public void onMenuItemClick(BaseCard card, MenuItem item) { Toast.makeText(getActivity(), "Click on " + item.getTitle() + "-" + ((Card) card).getCardHeader().getTitle(), Toast.LENGTH_SHORT).show(); } }); //Add a PopupMenuPrepareListener to add dynamically a menu entry //it is optional. header.setPopupMenuPrepareListener(new CardHeader.OnPrepareCardHeaderPopupMenuListener() { @Override public boolean onPreparePopupMenu(BaseCard card, PopupMenu popupMenu) { popupMenu.getMenu().add("Dynamic item"); //You can remove an item with this code //popupMenu.getMenu().removeItem(R.id.action_settings); //return false; You can use return false to hidden the button and the popup return true; } }); card.addCardHeader(header); //Set card in the CardViewNative CardViewNative cardViewNative = (CardViewNative) getActivity().findViewById(R.id.carddemo_header_overflow_dynamic2); cardViewNative.setCard(card); } /** * This method builds a standard header with base expand/collpase */ private void init_standard_header_with_expandcollapse_button() { //Create a Card Card card = new Card(getActivity()); //Create a CardHeader CardHeader header = new CardHeader(getActivity()); //Set the header title header.setTitle(getString(R.string.demo_header_basetitle)); //Set visible the expand/collapse button header.setButtonExpandVisible(true); //Add Header to card card.addCardHeader(header); //This provides a simple (and useless) expand area CardExpand expand = new CardExpand(getActivity()); //Set inner title in Expand Area expand.setTitle(getString(R.string.demo_expand_basetitle)); card.addCardExpand(expand); //Set card in the CardViewNative CardViewNative cardViewNative = (CardViewNative) getActivity().findViewById(R.id.carddemo_header_expand); cardViewNative.setCard(card); } /** * This method builds a standard header with a custom expand/collpase */ private void init_standard_header_with_expandcollapse_button_custom_area() { //Create a Card Card card = new Card(getActivity()); //Create a CardHeader CardHeader header = new CardHeader(getActivity()); //Set the header title header.setTitle(getString(R.string.demo_header_basetitle)); //Set visible the expand/collapse button header.setButtonExpandVisible(true); //Add Header to card card.addCardHeader(header); //This provides a simple (and useless) expand area CustomExpandCard expand = new CustomExpandCard(getActivity()); //Add Expand Area to Card card.addCardExpand(expand); //Set card in the CardViewNative final CardViewNative cardViewNative = (CardViewNative) getActivity().findViewById(R.id.carddemo_header_expand_custom_area); // It is not required. card.setOnExpandAnimatorEndListener(new Card.OnExpandAnimatorEndListener() { @Override public void onExpandEnd(Card card) { //TODO: check if hidden area is visible and it would be better an animator to do this } }); cardViewNative.setCard(card); } /** * This method builds a standard header with other button visible */ private void init_standard_header_with_custom_other_button() { //Create a Card Card card = new Card(getActivity()); //Create a CardHeader CardHeader header = new CardHeader(getActivity()); //Set the header title header.setTitle(getString(R.string.demo_header_basetitle)); //Set visible the expand/collapse button header.setOtherButtonVisible(true); //Add a callback header.setOtherButtonClickListener(new CardHeader.OnClickCardHeaderOtherButtonListener() { @Override public void onButtonItemClick(Card card, View view) { Toast.makeText(getActivity(), "Click on Other Button", Toast.LENGTH_LONG).show(); } }); //Add Header to card card.addCardHeader(header); //Set card in the CardViewNative final CardViewNative cardViewNative = (CardViewNative) getActivity().findViewById(R.id.carddemo_header_other_button); cardViewNative.setCard(card); } /** * This method builds a standard header with other button visible which drawable is defined programmatically */ private void init_standard_header_with_custom_other_button_programmatically() { //Create a Card Card card = new Card(getActivity()); //Create a CardHeader CardHeader header = new CardHeader(getActivity()); //Set the header title header.setTitle(getString(R.string.demo_header_basetitle)); //Set visible the expand/collapse button header.setOtherButtonVisible(true); //Add a callback header.setOtherButtonClickListener(new CardHeader.OnClickCardHeaderOtherButtonListener() { @Override public void onButtonItemClick(Card card, View view) { Toast.makeText(getActivity(), "Click on Other Button", Toast.LENGTH_LONG).show(); } }); //Use this code to set your drawable if (Build.VERSION.SDK_INT >= Constants.API_L) { // Use the simple png. It is the src in image (Android-L uses the ripple) header.setOtherButtonDrawable(R.drawable.ic_action_add); } else { // Use a selector. It is the background in image header.setOtherButtonDrawable(R.drawable.card_menu_button_other_add); } //Add Header to card card.addCardHeader(header); //Set card in the CardViewNative final CardViewNative cardViewNative = (CardViewNative) getActivity().findViewById(R.id.carddemo_header_other_button_programmatically); cardViewNative.setCard(card); } /** * This method builds a header with custom inner layout */ private void init_header_with_custom_inner_layout() { //Create a Card Card card = new Card(getActivity()); //Create a CardHeader CustomHeaderInnerCard header = new CustomHeaderInnerCard(getActivity()); //Add Header to card card.addCardHeader(header); //Set card in the CardViewNative CardViewNative cardViewNative = (CardViewNative) getActivity().findViewById(R.id.carddemo_header_inner); cardViewNative.setCard(card); } /** * This method builds a header with full custom layout */ private void init_header_with_custom_layout() { //Create a Card Card card = new Card(getActivity()); //Create a CardHeader CustomHeaderExample1 header = new CustomHeaderExample1(getActivity()); //Add Header to card card.addCardHeader(header); //Set card in the CardViewNative CardViewNative cardViewNative = (CardViewNative) getActivity().findViewById(R.id.carddemo_header_layout); cardViewNative.setCard(card); } /** * This method builds a header with full custom layout, with buttons on the left */ private void init_header_buttonleft(){ //Create a Card Card card = new Card(getActivity()); //Create a CardHeader CardHeader header = new CardHeader(getActivity(),R.layout.carddemo_native_buttonleft_inner_header); //Set the header title header.setTitle(getString(R.string.demo_header_basetitle)); header.setOtherButtonVisible(true); header.setOtherButtonClickListener(new CardHeader.OnClickCardHeaderOtherButtonListener() { @Override public void onButtonItemClick(Card card, View view) { //Example to change dinamically the button resources if (Build.VERSION.SDK_INT >= Constants.API_L) { card.getCardHeader().setOtherButtonDrawable(R.drawable.ic_action_add); } else { card.getCardHeader().setOtherButtonDrawable(R.drawable.card_menu_button_other_add); } card.getCardView().refreshCard(card); } }); card.addCardHeader(header); //Set card in the CardViewNative CardViewNative cardViewNative = (CardViewNative) getActivity().findViewById(R.id.carddemo_header_buttonleft); cardViewNative.setCard(card); } }