Created
December 27, 2017 15:19
-
-
Save canberkozcelik/e0eb8e7b603e8dbcdd8dd7c9abbd420f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** ButterKnife Code **/ | |
@BindView(R.id.picture) | |
ImageView picture; | |
@BindView(R.id.name) | |
TextView name; | |
@BindView(R.id.gender) | |
TextView gender; | |
@BindView(R.id.company) | |
TextView company; | |
@BindView(R.id.email) | |
TextView email; | |
@BindView(R.id.phone) | |
TextView phone; | |
@BindView(R.id.tags) | |
android.support.v7.widget.RecyclerView tags; | |
@BindView(R.id.friends) | |
android.support.v7.widget.RecyclerView friends; | |
/** ButterKnife Code **/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment