Guest User

Untitled

a guest
Sep 14th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. package com.example.android.miwok;
  2.  
  3. import android.support.annotation.NonNull;
  4. import android.support.annotation.Nullable;
  5. import android.view.View;
  6. import android.view.ViewGroup;
  7. import android.widget.ArrayAdapter;
  8.  
  9. public class WordAdapter extends ArrayAdapter<Word>
  10. {
  11.  
  12. @NonNull
  13. @Override
  14. public View getView(int position, @Nullable View convertView, @NonNull ViewGroup parent) {
  15. return super.getView(position, convertView, parent);
  16. }
  17. }
Add Comment
Please, Sign In to add comment