mirror of
https://github.com/Team4388/RidgeScout.git
synced 2026-06-09 00:37:59 -06:00
Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 0846f5a3b3 | |||
| 554cad2abd | |||
| 7d41a5e5a9 |
@@ -25,8 +25,8 @@ android {
|
|||||||
applicationId = "com.ridgebotics.ridgescout"
|
applicationId = "com.ridgebotics.ridgescout"
|
||||||
minSdk = 24
|
minSdk = 24
|
||||||
targetSdk = 34
|
targetSdk = 34
|
||||||
versionCode = 8 // **IMPORTANT** Increment this before releasing on github
|
versionCode = 9 // **IMPORTANT** Increment this before releasing on github
|
||||||
versionName = "1.1"// **IMPORTANT** Change this before releasing on github (<Year num since 2024>.<Update Version>)
|
versionName = "1.2"// **IMPORTANT** Change this before releasing on github (<Year num since 2024>.<Update Version>)
|
||||||
|
|
||||||
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ public class CustomSpinnerView extends LinearLayout {
|
|||||||
AlertDialog.Builder builder = new AlertDialog.Builder(getContext());
|
AlertDialog.Builder builder = new AlertDialog.Builder(getContext());
|
||||||
|
|
||||||
ScrollView sv = new ScrollView(getContext());
|
ScrollView sv = new ScrollView(getContext());
|
||||||
sv.setLayoutDirection(ScrollView.SCROLL_AXIS_VERTICAL);
|
// sv.setLayoutDirection(ScrollView.SCROLL_AXIS_VERTICAL);
|
||||||
|
|
||||||
LinearLayout ll = new LinearLayout(getContext());
|
LinearLayout ll = new LinearLayout(getContext());
|
||||||
ll.setOrientation(LinearLayout.VERTICAL);
|
ll.setOrientation(LinearLayout.VERTICAL);
|
||||||
@@ -94,7 +94,7 @@ public class CustomSpinnerView extends LinearLayout {
|
|||||||
|
|
||||||
ll.addView(popup);
|
ll.addView(popup);
|
||||||
|
|
||||||
popup.setLayoutDirection(0);
|
// popup.setLayoutDirection(0);
|
||||||
builder.setView(sv);
|
builder.setView(sv);
|
||||||
AlertDialog dialog = builder.create();
|
AlertDialog dialog = builder.create();
|
||||||
|
|
||||||
|
|||||||
@@ -270,7 +270,7 @@ public class EventFragment extends Fragment {
|
|||||||
teamNums.add(String.valueOf(event.teams.get(i).teamNumber));
|
teamNums.add(String.valueOf(event.teams.get(i).teamNumber));
|
||||||
|
|
||||||
ScrollView sv = new ScrollView(getContext());
|
ScrollView sv = new ScrollView(getContext());
|
||||||
sv.setLayoutDirection(ScrollView.SCROLL_AXIS_VERTICAL);
|
// sv.setLayoutDirection(ScrollView.SCROLL_AXIS_VERTICAL);
|
||||||
|
|
||||||
LinearLayout ll = new LinearLayout(getContext());
|
LinearLayout ll = new LinearLayout(getContext());
|
||||||
ll.setOrientation(LinearLayout.VERTICAL);
|
ll.setOrientation(LinearLayout.VERTICAL);
|
||||||
|
|||||||
Reference in New Issue
Block a user