Skip to content

Instantly share code, notes, and snippets.

#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#define N 100
typedef struct Eleve {
char* nom;
int age;
struct Eleve* next;
@ibabde
ibabde / EmptyRecyclerView.java
Last active December 18, 2016 06:36 — forked from AnirudhaAgashe/EmptyRecyclerView.java
RecyclerView with provosion to add empty view like list view. Displayed when the data set is empty
import android.content.Context;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;
import android.support.v7.widget.RecyclerView;
import android.util.AttributeSet;
import android.view.View;
public class EmptyRecyclerView extends RecyclerView {