Skip to content

Instantly share code, notes, and snippets.

@oznus
Created February 21, 2017 01:08
Show Gist options
  • Save oznus/6da8b3376a825985c7da31b7c43bc243 to your computer and use it in GitHub Desktop.
Save oznus/6da8b3376a825985c7da31b7c43bc243 to your computer and use it in GitHub Desktop.
public class MainActivity extends AppCompatActivity {
ChatAdapter chatAdapter;
RecyclerView recyclerView;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
recyclerView = findViewById(R.id.recyclerView);
chatAdapter = new ChatAdapter(this);
recyclerView.setAdapter(chatAdapter);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment