Please use JAVA IN ANDROID STUDIO. thanks so much its really appreciated.

As you had mentioned you had already implemented the drink part,
I will provide you the details for Food menu
NOTE:- THIS FOOD PROGRAM IS ALREADY DONE BY ME WITH DIFFERENT NAMES..
MAKE NECESSARY CHANGES.
NOTES
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="com.example.android.food.MainActivity">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:src="@drawable/bg"
android:layout_centerVertical="true"/>
<TextView
android:text="WELCOME TO FOOD MENU"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="13dp"
android:id="@+id/menu_tv"
android:textStyle="normal|bold"
android:textSize="24sp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" />
<Button
android:text="PIZZA"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/menu_tv"
android:layout_centerHorizontal="true"
android:layout_marginTop="73dp"
android:id="@+id/pizza_bt"
android:onClick="pizzaFn" />
<Button
android:text="SALAD"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_alignStart="@+id/pizza_bt"
android:id="@+id/salad_bt"
android:onClick="saladFn" />
<Button
android:text="BBQ"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/salad_bt"
android:layout_alignStart="@+id/salad_bt"
android:layout_marginTop="64dp"
android:id="@+id/steak_bt"
android:onClick="steakFn" />
</RelativeLayout>
activity_salad.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:paddingTop="10dp"
android:layout_width="500dp"
android:layout_height="250dp"
android:src="@drawable/salad"
android:id="@+id/imageView" />
<TextView
android:text="salad - $ 50"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageView"
android:layout_centerHorizontal="true"
android:layout_marginTop="53dp"
android:id="@+id/textView"
android:textStyle="bold"
android:textSize="15sp" />
</RelativeLayout>
activity_pizza.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:paddingTop="10dp"
android:layout_width="500dp"
android:layout_height="250dp"
android:src="@drawable/pizza"
android:id="@+id/imageView" />
<TextView
android:text="Pizza - $85"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageView"
android:layout_centerHorizontal="true"
android:layout_marginTop="53dp"
android:id="@+id/textView"
android:textStyle="bold"
android:textSize="15sp" />
</RelativeLayout>
activity_steak.xml
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ImageView
android:paddingTop="10dp"
android:layout_width="500dp"
android:layout_height="250dp"
android:src="@drawable/steak"
android:id="@+id/imageView" />
<TextView
android:text="STEAK - $50"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/imageView"
android:layout_centerHorizontal="true"
android:layout_marginTop="53dp"
android:id="@+id/textView"
android:textStyle="bold"
android:textSize="15sp" />
</RelativeLayout>
JAVA FILE
MainActivty
package com.example.android.food;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
/*FUNTION THAT WILL BE CALLED WHEN WE CLICK BUTTON PIZZA AND IT WILL GO TO THE PIZZA LAYOUT*/
public void pizzaFn(View v) {
Intent i = new Intent(MainActivity.this,PizzaActivity.class);
startActivity(i);
}
/*FUNTION THAT WILL BE CALLED WHEN WE CLICK BUTTON SALAD AND IT WILL GO TO THE SALAD LAYOUT*/
public void saladFn(View v) {
Intent i = new Intent(MainActivity.this,SaladActivity.class);
startActivity(i);
}
/*FUNTION THAT WILL BE CALLED WHEN WE CLICK BUTTON STEAK AND IT WILL GO TO THE STEAK LAYOUT*/
public void steakFn(View v) {
Intent i = new Intent(MainActivity.this,SteakActivity.class);
startActivity(i);
}
}
Feel free to comment if you need any queries
Please use JAVA IN ANDROID STUDIO. thanks so much its really appreciated. 6.1.1 Steps to Follow...
In this assignment, you will implement Address and Residence classes. Create a new java project. Part A Implementation details of Address class: Add and implement a class named Address according to specifications in the UML class diagram. Data fields: street, city, province and zipCode. Constructors: A no-arg constructor that creates a default Address. A constructor that creates an address with the specified street, city, state, and zipCode Getters and setters for all the class fields. toString() to print out all...
If anyone here is a Java and Android Studio expert please I really need help fulfilling the requirements needed to make a Rock Paper Scissors game. I mainly need Java code to complete it I will post what I have so far I don't have much time left please if anyone can help me I would really appreciate it. Here's what the app is supposed to do... The player should be able to select either Rock, Paper, or Scissors.The app...
Can someone help me in java Net Beans IDE witht the code and java comments. ThanksMany of these classes will just need to be copied from previous assignments. When you implement the Tree interface you may import the java.util.Iterator class. When you implement the AbstractBinaryTree class you may import the java.util.ArrayList class and the java.util.List class.In this project you will be doing the following:Create a NetBeans project named lab07 and ensure it is imported into your SVN.In this lab assignment...
Really need help with this. This is for my Advanced Java Programming Class. If anyone is an expert in Java I would very much appreciate the help. I will provide the code I was told to open. Exercise 13-3 Use JPA to work with the library checkout system In this exercise, you'll convert the application from the previous exercise to use JPA instead of JDBC to access the database. Review the project Start NetBeans and open the project named ch13_ex3_library that's...
In c# So far, you
have created object-oriented code for individual classes. You have
built objects from these classes. Last week, you created a UML for
new inherited classes and objects. Finally, you have used
polymorphism. When you add abstraction to this mix, you have the “4
Pillars of OOP.” Now, you begin putting the pieces together to
create larger object-oriented programs.
Objectives for the
project are:
Create OO classes that contain
inherited and polymorphic members
Create abstracted classes and...
For this assignment, you will use your knowledge of arrays and ArrayLists to write a Java program that will input a file of sentences and output a report showing the tokens and shingles (defined below) for each sentence. Templates are provided below for implementing the program as two separate files: a test driver class containing the main() method, and a sentence utilities class that computes the tokens and shingles, and reports their values. The test driver template already implements accepting...
****Please read the following requirements and use java language w/ comments**** ****Can make this a multi part question if needed**** Project requires a base class, a derived subclass, and an interactive driver (class with a main) that allows the user to utilize and manipulate the classes created. You may select one super class from the following: Superclass Example subclasses Ship class a) battleship, tugboat, icebreaker Person class b) manager, salaryworker, hourlyworker Aircraft class c) Learjet, cargoplane,...
Please help me do the java project For this project you will be reading in a text file and evaluating it in order to create a new file that represents the Class that will represent the properties of the text file. For example, consider the following text file: students.txt ID Name Age IsMale GPA 1 Tom Ryan 22 True 3.1 2 Jack Peterson 31 True 2.7 3 Cindy LuWho 12 False 3.9 When you read in the header line, you...
******Java Programming Hi guys, I really need you help. I created a code for my java course, but it keep giving me error messages. Majority of my code is fine but some keep display error on my console. I was hoping someone could pin points the problem. .There are three classes with the testCenter class being the main class. In the following is the assignment, and the bottom is my code. Please help! Assignment: Concepts: GUI User Design Graphics Deployment...
JAVA PROGRAMMING***** Please provide screenshots of output and write a tester class to test. The starter code has been provided below, just needs to be altered. For this project you will implement the Memento Design Pattern. To continue on with the food theme, you will work with Ice Cream Cones. You will need to use AdvancedIceCreamCone.java. Create at least three Ice Cream Cones - one with chocolate ice cream, one with vanilla ice cream and one with strawberry ice cream....