Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
omarpall committed Apr 4, 2018
1 parent 660b3d4 commit 8f2768a
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,6 @@ public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle sa
@Override
public void onChildAdded(DataSnapshot dataSnapshot, String s) {
value = dataSnapshot.getValue(String.class);
System.out.println("yolo");
}

@Override
Expand Down Expand Up @@ -338,7 +337,7 @@ private void updateView() {
titleView.setText(movie.getTitle());
descrView.setText(movie.getDescr());
imdbRatingView.setText(movie.getImdb());
bioRatingView.setText("v" + value);
//bioRatingView.setText(value);
Picasso.with(getContext()).load(movie.getCert()).into(certView);
List<String> directors = movie.getDirectors();
int directorsSize = directors.size();
Expand Down
1 change: 0 additions & 1 deletion app/src/main/res/values/strings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
<string name="title_notifications">Notifications</string>

<string name="link_yfir_imdb_s_u_myndar">Link yfir á IMDb síðu myndar</string>
<string name="aldurstakmark">aldurstakmark</string>
<string name="s_ningat_mar">Sýningatímar</string>
<string name="l_sing_mynd">Lýsing á mynd</string>
<string name="setur_youtube_spilarann_gang">Setur youtube spilarann í gang</string>
Expand Down

0 comments on commit 8f2768a

Please sign in to comment.