I\'m looking at this sample image from Google, and trying to figure out how to implement something like this.
It looks very similar to the standard CardFragment>
I accomplished this by extending the CardFragment and overriding onCreateContentView:
@Override
public View onCreateContentView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
mRootView = (ViewGroup) inflater.inflate(R.layout.fragment_my_card, null);
...
}
This lets you control what goes on the white card.