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

27
src/AndroidManifest.xml Normal file
View File

@@ -0,0 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.mycoolapp"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="13"
android:targetSdkVersion="13" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

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);
}
}