This repository has been archived by the owner on Aug 22, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added Android App/Project and updated .gitignore
- Loading branch information
Showing
47 changed files
with
2,057 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
*.iml | ||
.gradle | ||
/local.properties | ||
/.idea/workspace.xml | ||
/.idea/libraries | ||
.DS_Store | ||
/build | ||
/captures | ||
.externalNativeBuild |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 26 | ||
defaultConfig { | ||
applicationId "org.team100.pitscouting" | ||
minSdkVersion 23 | ||
targetSdkVersion 26 | ||
versionCode 1 | ||
versionName "1.0" | ||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | ||
} | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
repositories { | ||
maven { url 'https://jitpack.io' } | ||
} | ||
} | ||
|
||
dependencies { | ||
implementation fileTree(dir: 'libs', include: ['*.jar']) | ||
implementation 'com.android.support:appcompat-v7:26.1.0' | ||
implementation 'com.android.support.constraint:constraint-layout:1.0.2' | ||
implementation 'com.android.support:design:26.1.0' | ||
testImplementation 'junit:junit:4.12' | ||
androidTestImplementation 'com.android.support.test:runner:1.0.1' | ||
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' | ||
compile 'com.google.zxing:core:3.2.0' | ||
compile 'com.github.kenglxn.QRGen:android:2.4.0' | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Add project specific ProGuard rules here. | ||
# You can control the set of applied configuration files using the | ||
# proguardFiles setting in build.gradle. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
|
||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} | ||
|
||
# Uncomment this to preserve the line number information for | ||
# debugging stack traces. | ||
#-keepattributes SourceFile,LineNumberTable | ||
|
||
# If you keep the line number information, uncomment this to | ||
# hide the original source file name. | ||
#-renamesourcefileattribute SourceFile |
26 changes: 26 additions & 0 deletions
26
...hScouting/app/src/androidTest/java/org/team100/matchscouting/ExampleInstrumentedTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package org.team100.matchscouting; | ||
|
||
import android.content.Context; | ||
import android.support.test.InstrumentationRegistry; | ||
import android.support.test.runner.AndroidJUnit4; | ||
|
||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
import static org.junit.Assert.*; | ||
|
||
/** | ||
* Instrumented test, which will execute on an Android device. | ||
* | ||
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a> | ||
*/ | ||
@RunWith(AndroidJUnit4.class) | ||
public class ExampleInstrumentedTest { | ||
@Test | ||
public void useAppContext() throws Exception { | ||
// Context of the app under test. | ||
Context appContext = InstrumentationRegistry.getTargetContext(); | ||
|
||
assertEquals("org.team100.pitscouting", appContext.getPackageName()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="org.team100.matchscouting"> | ||
|
||
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:roundIcon="@mipmap/ic_launcher_round" | ||
android:supportsRtl="true" | ||
android:theme="@style/AppTheme"> | ||
<activity android:name=".MainActivity"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
|
||
<category android:name="android.intent.category.LAUNCHER" /> | ||
</intent-filter> | ||
</activity> | ||
<activity android:name=".QRActivity" /> | ||
<activity android:name="org.team100.matchscouting.QualActivity" /> | ||
</application> | ||
|
||
</manifest> |
170 changes: 170 additions & 0 deletions
170
Tablet/MatchScouting/app/src/main/java/org/team100/matchscouting/MainActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,170 @@ | ||
package org.team100.matchscouting; | ||
|
||
import android.app.Activity; | ||
import android.content.Intent; | ||
import android.support.v7.app.AppCompatActivity; | ||
import android.os.Bundle; | ||
import android.view.View; | ||
import android.view.WindowManager; | ||
import android.widget.CheckBox; | ||
import android.widget.EditText; | ||
import android.widget.RadioButton; | ||
import android.widget.RadioGroup; | ||
import android.widget.Spinner; | ||
import android.widget.TabHost; | ||
import android.widget.Toast; | ||
|
||
public class MainActivity extends AppCompatActivity { | ||
|
||
@Override | ||
protected void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
setContentView(R.layout.activity_main); | ||
this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN); | ||
|
||
//Set Tabs | ||
setTabs(); | ||
} | ||
|
||
public void setTabs(){ | ||
|
||
TabHost tabHost1 = (TabHost)findViewById(R.id.tabhost1); | ||
tabHost1.setup(); | ||
TabHost tabHost2 = (TabHost)findViewById(R.id.tabhost2); | ||
tabHost2.setup(); | ||
|
||
TabHost.TabSpec tab1 = tabHost1.newTabSpec("Auto"); | ||
TabHost.TabSpec tab2 = tabHost1.newTabSpec("Tele-Op"); | ||
TabHost.TabSpec tab3 = tabHost2.newTabSpec("Init"); | ||
TabHost.TabSpec tab4 = tabHost2.newTabSpec("Overall"); | ||
|
||
tab1.setIndicator("Auto"); | ||
tab1.setContent(R.id.Auto); | ||
|
||
tab2.setIndicator("Tele-Op"); | ||
tab2.setContent(R.id.Teleop); | ||
|
||
tab3.setIndicator("Init"); | ||
tab3.setContent(R.id.Init); | ||
|
||
tab4.setIndicator("Overall"); | ||
tab4.setContent(R.id.Overall); | ||
|
||
tabHost1.addTab(tab1); | ||
tabHost1.addTab(tab2); | ||
tabHost2.addTab(tab3); | ||
tabHost2.addTab(tab4); | ||
} | ||
|
||
public void onButton(View v) { | ||
qual(); | ||
} | ||
|
||
public String getData(String qual){ | ||
//Link XML objects to Java objects\ | ||
Spinner spinner4 = findViewById(R.id.spinner4); | ||
EditText editText = findViewById(R.id.editText5); | ||
RadioGroup radioGroup3 = findViewById(R.id.radioGroup3); | ||
RadioGroup radioGroup2 = findViewById(R.id.radioGroup2); | ||
RadioGroup radioGroup = findViewById(R.id.radioGroup); | ||
CheckBox checkBoxALine = findViewById(R.id.checkBoxALine); | ||
CheckBox checkBoxACube = findViewById(R.id.checkBoxACube); | ||
Spinner spinner = findViewById(R.id.spinner); | ||
Spinner spinner2 = findViewById(R.id.spinner2); | ||
CheckBox checkBox2 = findViewById(R.id.checkBox2); | ||
Spinner spinner5 = findViewById(R.id.spinner5); | ||
Spinner spinner6 = findViewById(R.id.spinner6); | ||
Spinner spinner7 = findViewById(R.id.spinner7); | ||
CheckBox checkBox3 = findViewById(R.id.checkBox3); | ||
CheckBox checkBox4 = findViewById(R.id.checkBox4); | ||
CheckBox checkBox5 = findViewById(R.id.checkBox5); | ||
Spinner spinner8 = findViewById(R.id.spinner8); | ||
Spinner spinner9 = findViewById(R.id.spinner9); | ||
CheckBox checkBox6 = findViewById(R.id.checkBox6); | ||
CheckBox checkBox8 = findViewById(R.id.checkBox8); | ||
CheckBox checkBox7 = findViewById(R.id.checkBox7); | ||
CheckBox checkBox9 = findViewById(R.id.checkBox9); | ||
|
||
//Radio Group Init | ||
String rgb2=((RadioButton)this.findViewById(radioGroup2.getCheckedRadioButtonId())).getText().toString(); | ||
String rgb3=((RadioButton)this.findViewById(radioGroup3.getCheckedRadioButtonId())).getText().toString(); | ||
String rgb = ((RadioButton)this.findViewById(radioGroup.getCheckedRadioButtonId())).getText().toString(); | ||
|
||
//Get object values | ||
String sS4 = spinner4.getSelectedItem().toString(); | ||
String sET4 = editText.getText().toString(); | ||
String sRG3 = rgb3; | ||
String sRG2 = rgb2; | ||
String sRG = rgb; | ||
String sCBAL = String.valueOf(checkBoxALine.isChecked()); | ||
String sCBAC = String.valueOf(checkBoxACube.isChecked()); | ||
String sS = spinner.getSelectedItem().toString(); | ||
String sS2 = spinner2.getSelectedItem().toString(); | ||
String sCB2 = String.valueOf(checkBox2.isChecked()); | ||
String sS5 = spinner5.getSelectedItem().toString(); | ||
String sS6 = spinner6.getSelectedItem().toString(); | ||
String sS7 = spinner7.getSelectedItem().toString(); | ||
String sCB3 = String.valueOf(checkBox3.isChecked()); | ||
String sCB4 = String.valueOf(checkBox4.isChecked()); | ||
String sCB5 = String.valueOf(checkBox5.isChecked()); | ||
String sS8 = spinner8.getSelectedItem().toString(); | ||
String sS9 = spinner9.getSelectedItem().toString(); | ||
String sCB6 = String.valueOf(checkBox6.isChecked()); | ||
String sCB8 = String.valueOf(checkBox8.isChecked()); | ||
String sCB7 = String.valueOf(checkBox7.isChecked()); | ||
String sCB9 = String.valueOf(checkBox9.isChecked()); | ||
|
||
String fin = sS4 + "^" + sET4 + "^" + sRG3 + "^" + sRG2 + "^" + sRG | ||
+ "^" + sCBAL + "^" + sCBAC + "^" + sS + "^" + sS2 + "^" + sCB2 | ||
+ "^" + sS5 + "^" + sS6 + "^" + sS7 + "^" + sCB3 + "^" + sCB4 | ||
+ "^" + sCB5 + "^" + sS8 + "^" + sS9 + "^" + sCB6 + "^" + sCB8 | ||
+ "^" + sCB7 + "^" + sCB9 + "^" + qual; | ||
|
||
return fin; | ||
} | ||
|
||
public void q(View v){ | ||
Intent intentqq = new Intent(this, QualActivity.class); | ||
startActivity(intentqq); | ||
} | ||
|
||
public void qual(){ | ||
Intent intentQual = new Intent(this, QualActivity.class); | ||
startActivityForResult(intentQual, 1); | ||
} | ||
|
||
@Override | ||
protected void onActivityResult(int requestCode, int resultCode, Intent data){ | ||
super.onActivityResult(requestCode, resultCode, data); | ||
String returnValue = ""; | ||
switch(requestCode) { | ||
case (1) : { | ||
if (resultCode == Activity.RESULT_OK) { | ||
// TODO Extract the data returned from the child Activity. | ||
returnValue = data.getStringExtra("data1"); | ||
} | ||
break; | ||
} | ||
} | ||
String s = returnValue; | ||
String fin1 = ""; | ||
if(s.isEmpty()){ | ||
fin1 = getData(" "); | ||
}else { | ||
fin1 = getData(s); | ||
} | ||
|
||
//Check if payload is null, otherwise open QR activity and pass payload | ||
if (fin1.isEmpty()) { | ||
Toast.makeText(this, "Invalid Text", Toast.LENGTH_SHORT).show(); | ||
} else { | ||
Spinner spinner4a = findViewById(R.id.spinner4); | ||
Intent intent = new Intent(this, QRActivity.class); | ||
intent.putExtra("payload", fin1); | ||
intent.putExtra("team", spinner4a.getSelectedItem().toString()); | ||
|
||
startActivity(intent); | ||
finish(); | ||
} | ||
} | ||
} |
Oops, something went wrong.