Skip to content

Commit

Permalink
naming consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Cvolton committed Jan 29, 2019
1 parent 7399a00 commit 6247da4
Show file tree
Hide file tree
Showing 7 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public RozvrhBasicAdapter(List<Object> rozvrhList) {
@Override
public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View itemView = LayoutInflater.from(parent.getContext())
.inflate(R.layout.rozvrh_item, parent, false);
.inflate(R.layout.item_rozvrh, parent, false);

return new MyViewHolder(itemView);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public UkolyBasicAdapter(List<Ukol> ukolyList) {
@Override
public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View itemView = LayoutInflater.from(parent.getContext())
.inflate(R.layout.ukol_item, parent, false);
.inflate(R.layout.item_ukol, parent, false);

return new MyViewHolder(itemView);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public ZnamkyBasicAdapter(List<Znamka> znamkyList) {
@Override
public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View itemView = LayoutInflater.from(parent.getContext())
.inflate(R.layout.znamka_item, parent, false);
.inflate(R.layout.item_znamka, parent, false);

return new MyViewHolder(itemView);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ public ZnamkyPredmetAdapter(List<ZnamkaPredmet> znamkyList) {
@Override
public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View itemView = LayoutInflater.from(parent.getContext())
.inflate(R.layout.ukol_item, parent, false);
.inflate(R.layout.item_ukol, parent, false);

return new MyViewHolder(itemView);
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 6247da4

Please sign in to comment.