From 198a1857a47d6a172b8ff59a8f16b0c8fe1fd29d Mon Sep 17 00:00:00 2001 From: "Wyatt J. Miller" Date: Thu, 17 Sep 2020 18:12:13 -0400 Subject: [PATCH] added more stuff --- .idea/codeStyles/Project.xml | 138 ++++++++++++++++++++++ .idea/codeStyles/codeStyleConfig.xml | 5 + .idea/gradle.xml | 21 ++++ .idea/jarRepositories.xml | 25 ++++ .idea/misc.xml | 9 ++ .idea/runConfigurations.xml | 12 ++ .idea/vcs.xml | 6 + app/src/main/res/layout/activity_main.xml | 21 ++++ app/src/main/res/values/strings.xml | 2 +- 9 files changed, 238 insertions(+), 1 deletion(-) create mode 100644 .idea/codeStyles/Project.xml create mode 100644 .idea/codeStyles/codeStyleConfig.xml create mode 100644 .idea/gradle.xml create mode 100644 .idea/jarRepositories.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/runConfigurations.xml create mode 100644 .idea/vcs.xml diff --git a/.idea/codeStyles/Project.xml b/.idea/codeStyles/Project.xml new file mode 100644 index 0000000..3cc336b --- /dev/null +++ b/.idea/codeStyles/Project.xml @@ -0,0 +1,138 @@ + + + + + + + + + + + +
+ + + + xmlns:android + + ^$ + + + +
+
+ + + + xmlns:.* + + ^$ + + + BY_NAME + +
+
+ + + + .*:id + + http://schemas.android.com/apk/res/android + + + +
+
+ + + + .*:name + + http://schemas.android.com/apk/res/android + + + +
+
+ + + + name + + ^$ + + + +
+
+ + + + style + + ^$ + + + +
+
+ + + + .* + + ^$ + + + BY_NAME + +
+
+ + + + .* + + http://schemas.android.com/apk/res/android + + + ANDROID_ATTRIBUTE_ORDER + +
+
+ + + + .* + + .* + + + BY_NAME + +
+
+
+
+ + +
+
\ No newline at end of file diff --git a/.idea/codeStyles/codeStyleConfig.xml b/.idea/codeStyles/codeStyleConfig.xml new file mode 100644 index 0000000..79ee123 --- /dev/null +++ b/.idea/codeStyles/codeStyleConfig.xml @@ -0,0 +1,5 @@ + + + + \ No newline at end of file diff --git a/.idea/gradle.xml b/.idea/gradle.xml new file mode 100644 index 0000000..c30f44c --- /dev/null +++ b/.idea/gradle.xml @@ -0,0 +1,21 @@ + + + + + + \ No newline at end of file diff --git a/.idea/jarRepositories.xml b/.idea/jarRepositories.xml new file mode 100644 index 0000000..a5f05cd --- /dev/null +++ b/.idea/jarRepositories.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..37a7509 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml new file mode 100644 index 0000000..7f68460 --- /dev/null +++ b/.idea/runConfigurations.xml @@ -0,0 +1,12 @@ + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..94a25f7 --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml index c2f8ad2..0df4e91 100644 --- a/app/src/main/res/layout/activity_main.xml +++ b/app/src/main/res/layout/activity_main.xml @@ -21,6 +21,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:width="30dp" + android:onClick="clickButtonOne" app:layout_column="0" app:layout_row="0" /> @@ -29,6 +30,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:width="30dp" + android:onClick="clickButtonTwo" app:layout_column="1" app:layout_row="0" /> @@ -37,6 +39,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:width="30dp" + android:onClick="clickButtonThree" app:layout_column="2" app:layout_row="0" /> @@ -45,6 +48,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:width="30dp" + android:onClick="clickButtonFour" app:layout_column="0" app:layout_row="1" /> @@ -53,6 +57,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:width="30dp" + android:onClick="clickButtonFive" app:layout_column="1" app:layout_row="1" /> @@ -61,6 +66,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:width="30dp" + android:onClick="clickButtonSix" app:layout_column="2" app:layout_row="1" /> @@ -69,6 +75,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:width="30dp" + android:onClick="clickButtonSeven" app:layout_column="0" app:layout_row="2" /> @@ -77,6 +84,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:width="30dp" + android:onClick="clickButtonEight" app:layout_column="1" app:layout_row="2" /> @@ -85,6 +93,7 @@ android:layout_width="wrap_content" android:layout_height="wrap_content" android:width="30dp" + android:onClick="clickButtonNine" app:layout_column="2" app:layout_row="2" /> @@ -109,4 +118,16 @@ android:text="Reset" app:layout_constraintBaseline_toBaselineOf="@+id/gameStatsButton" app:layout_constraintEnd_toEndOf="parent" /> + + \ No newline at end of file diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index 5cca91c..3815fbc 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -1,3 +1,3 @@ - TicTacToeApp + Tic Tac Toe \ No newline at end of file