Commit c90c5493 authored by jake.ejraee's avatar jake.ejraee

Update SongInformationPage.java

parent a005ea7b
...@@ -25,9 +25,9 @@ public class SongInformationPage extends AppCompatActivity { ...@@ -25,9 +25,9 @@ public class SongInformationPage extends AppCompatActivity {
TextView tag2View = findViewById(R.id.tag2View); TextView tag2View = findViewById(R.id.tag2View);
TextView tag3View = findViewById(R.id.tag3View); TextView tag3View = findViewById(R.id.tag3View);
songNameView.setText(title); songNameView.setText(title);
tag1View.setText(tag1); tag1View.setText("Cuisine: " + tag1);
tag2View.setText(tag2); tag2View.setText("Time Of Day: " + tag2);
tag3View.setText(tag3); tag3View.setText("Vibe: " + tag3);
} }
public void songPlayOnClick(View view) { public void songPlayOnClick(View view) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment