PhD (without cover) looks pretty good. Time to move onto MSc.

This commit is contained in:
2020-02-06 13:40:27 +00:00
parent e8f877c5ab
commit 3e9a703f0d
6 changed files with 224 additions and 24 deletions

25
src/Data_Bus.java Normal file
View File

@@ -0,0 +1,25 @@
package com.example.mycoolapp;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
// I am creating a comment that is very very long to demonstrate how the line wrapping system works. You should see a symbol to annotate that it has been wrapped to the next line.
public class Data_Bus extends Activity {
Button Next;
TextView textdisplay1, textdisplay2;
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
setContentView(R.layout.adc_databustest);
Next = (Button) findViewById (R.id.checkButton);
textdisplay1 = (TextView) findViewById (R.id.tvTop);
textdisplay2 = (TextView) findViewById (R.id.tvBottom);
}
}