Commit 83730e28 authored by Chathura IT19243986's avatar Chathura IT19243986

Upload New File

parent 71bf80c0
package com.example.peopluz1;
import androidx.appcompat.app.AppCompatActivity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
public class SymptomCheck extends AppCompatActivity {
Button workoutBtn,mealBtn;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_symptom_check);
// workoutBtn=findViewById(R.id.button10);
// mealBtn=findViewById(R.id.button2);
//
//
// workoutBtn.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(final View v) {
// startActivity(new Intent(getApplicationContext(),workoutplan.class));
// overridePendingTransition(0,0);
// }
// });
//
// mealBtn.setOnClickListener(new View.OnClickListener() {
// @Override
// public void onClick(final View v) {
// startActivity(new Intent(getApplicationContext(),MealPlan.class));
// overridePendingTransition(0,0);
// }
// });
}
}
\ No newline at end of file
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