use of it.gmariotti.cardslib.library.internal.CardHeader in project cardslib by gabrielemariotti.
the class NativeHeaderFragment method init_standard_header_with_custom_other_button.
/**
* 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);
}
use of it.gmariotti.cardslib.library.internal.CardHeader in project cardslib by gabrielemariotti.
the class NativeHeaderFragment method init_header_buttonleft.
/**
* 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);
}
use of it.gmariotti.cardslib.library.internal.CardHeader in project cardslib by gabrielemariotti.
the class NativeHeaderFragment method init_standard_header_without_buttons.
/**
* 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);
}
use of it.gmariotti.cardslib.library.internal.CardHeader in project cardslib by gabrielemariotti.
the class NativeHeaderFragment method init_standard_header_with_expandcollapse_button_custom_area.
/**
* 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);
}
use of it.gmariotti.cardslib.library.internal.CardHeader in project cardslib by gabrielemariotti.
the class NativeHeaderFragment method init_standard_header_with_custom_other_button_programmatically.
/**
* 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);
}
Aggregations