50 lines
1.6 KiB
Java
50 lines
1.6 KiB
Java
package com.example.capstone;
|
|
|
|
import androidx.appcompat.app.AppCompatActivity;
|
|
|
|
import android.content.Intent;
|
|
import android.net.Uri;
|
|
import android.os.Bundle;
|
|
import android.view.View;
|
|
import android.widget.TextView;
|
|
|
|
import com.google.firebase.auth.FirebaseAuth;
|
|
import com.google.firebase.database.DatabaseReference;
|
|
import com.google.firebase.database.FirebaseDatabase;
|
|
|
|
public class About extends AppCompatActivity {
|
|
FirebaseAuth fAuth;
|
|
DatabaseReference reff;
|
|
private TextView web;
|
|
@Override
|
|
protected void onCreate(Bundle savedInstanceState) {
|
|
super.onCreate(savedInstanceState);
|
|
setContentView(R.layout.activity_about);
|
|
fAuth = FirebaseAuth.getInstance();
|
|
web = findViewById(R.id.abouttitle3);
|
|
|
|
web.setOnClickListener(new View.OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
Uri uri = Uri.parse("https://sherm048.github.io/");
|
|
startActivity(new Intent(Intent.ACTION_VIEW,uri));
|
|
}
|
|
});
|
|
|
|
}
|
|
|
|
public void logout(View view){
|
|
fAuth.signOut();
|
|
reff = FirebaseDatabase.getInstance().getReference().child("signal");
|
|
reff.child("1").child("camera").setValue("off");
|
|
reff.child("1").child("power").setValue("off");
|
|
reff.child("1").child("motor").setValue("off");
|
|
reff.child("1").child("alarm").setValue("off");
|
|
startActivity(new Intent(getApplicationContext(), Login.class));
|
|
finish();
|
|
}
|
|
|
|
public void back(View view){
|
|
startActivity(new Intent(getApplicationContext(), Settings.class));
|
|
}
|
|
}
|