Commit 1d6d0e02 authored by jake.ejraee's avatar jake.ejraee

Actually removed help button

parent 73354b69
...@@ -15,7 +15,6 @@ public class homeScreen extends AppCompatActivity { ...@@ -15,7 +15,6 @@ public class homeScreen extends AppCompatActivity {
int swipeEndX; int swipeEndX;
View sideView; View sideView;
Button settingsButton; Button settingsButton;
Button helpButton;
@Override @Override
protected void onCreate(Bundle savedInstanceState) { protected void onCreate(Bundle savedInstanceState) {
...@@ -23,7 +22,6 @@ public class homeScreen extends AppCompatActivity { ...@@ -23,7 +22,6 @@ public class homeScreen extends AppCompatActivity {
setContentView(R.layout.activity_main); setContentView(R.layout.activity_main);
sideView = this.findViewById(R.id.sideView); sideView = this.findViewById(R.id.sideView);
settingsButton = this.findViewById(R.id.buttonSettings); settingsButton = this.findViewById(R.id.buttonSettings);
helpButton = this.findViewById(R.id.buttonHelp);
ViewCompat.setTranslationZ(sideView, 20f); //bring sideView in front of buttons ViewCompat.setTranslationZ(sideView, 20f); //bring sideView in front of buttons
Button b = (Button)findViewById(R.id.suggestButton); Button b = (Button)findViewById(R.id.suggestButton);
......
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