Browse Source

Added VideodetectionActivity

DoNotMerge_Runnable_Test_Branch
Christian Tinz 11 months ago
parent
commit
30f9c6c3f4

+ 27
- 0
app/src/main/java/com/example/greenwatch/VideodetectionActivity.java View File

@@ -0,0 +1,27 @@
package com.example.greenwatch;

import androidx.appcompat.app.AppCompatActivity;

import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class VideodetectionActivity extends AppCompatActivity {

private Button backToMainActivity;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_videodetection);

backToMainActivity = (Button) findViewById(R.id.videodetectorBackToMainActivity);

backToMainActivity.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
finish();
}
});
}
}

+ 25
- 0
app/src/main/res/layout/activity_videodetection.xml View File

@@ -0,0 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:padding="10dp"
tools:context=".VideodetectionActivity">

<TextView
android:id="@+id/tvVideodetectionStatusmessage"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Videodetection Activity">
</TextView>

<Button
android:id="@+id/videodetectorBackToMainActivity"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Back to MainActivity">
</Button>

</LinearLayout>

Loading…
Cancel
Save