updated UI and stuff
This commit is contained in:
4
launcher/.idea/deploymentTargetSelector.xml
generated
4
launcher/.idea/deploymentTargetSelector.xml
generated
@@ -4,10 +4,10 @@
|
||||
<selectionStates>
|
||||
<SelectionState runConfigName="app">
|
||||
<option name="selectionMode" value="DROPDOWN" />
|
||||
<DropdownSelection timestamp="2026-03-04T03:07:59.832577900Z">
|
||||
<DropdownSelection timestamp="2026-03-05T16:57:38.614547700Z">
|
||||
<Target type="DEFAULT_BOOT">
|
||||
<handle>
|
||||
<DeviceId pluginId="PhysicalDevice" identifier="serial=fd94f2c9" />
|
||||
<DeviceId pluginId="LocalEmulator" identifier="path=C:\Users\cayde\.android\avd\Pixel.avd" />
|
||||
</handle>
|
||||
</Target>
|
||||
</DropdownSelection>
|
||||
|
||||
BIN
launcher/app/release/app-release.apk
Normal file
BIN
launcher/app/release/app-release.apk
Normal file
Binary file not shown.
BIN
launcher/app/release/baselineProfiles/0/app-release.dm
Normal file
BIN
launcher/app/release/baselineProfiles/0/app-release.dm
Normal file
Binary file not shown.
BIN
launcher/app/release/baselineProfiles/1/app-release.dm
Normal file
BIN
launcher/app/release/baselineProfiles/1/app-release.dm
Normal file
Binary file not shown.
37
launcher/app/release/output-metadata.json
Normal file
37
launcher/app/release/output-metadata.json
Normal file
@@ -0,0 +1,37 @@
|
||||
{
|
||||
"version": 3,
|
||||
"artifactType": {
|
||||
"type": "APK",
|
||||
"kind": "Directory"
|
||||
},
|
||||
"applicationId": "com.example.launcher",
|
||||
"variantName": "release",
|
||||
"elements": [
|
||||
{
|
||||
"type": "SINGLE",
|
||||
"filters": [],
|
||||
"attributes": [],
|
||||
"versionCode": 1,
|
||||
"versionName": "1.0",
|
||||
"outputFile": "app-release.apk"
|
||||
}
|
||||
],
|
||||
"elementType": "File",
|
||||
"baselineProfiles": [
|
||||
{
|
||||
"minApi": 28,
|
||||
"maxApi": 30,
|
||||
"baselineProfiles": [
|
||||
"baselineProfiles/1/app-release.dm"
|
||||
]
|
||||
},
|
||||
{
|
||||
"minApi": 31,
|
||||
"maxApi": 2147483647,
|
||||
"baselineProfiles": [
|
||||
"baselineProfiles/0/app-release.dm"
|
||||
]
|
||||
}
|
||||
],
|
||||
"minSdkVersionForDexing": 23
|
||||
}
|
||||
@@ -78,12 +78,16 @@ public class MainActivity extends AppCompatActivity {
|
||||
appItem.setOrientation(LinearLayout.VERTICAL);
|
||||
appItem.setGravity(Gravity.CENTER);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Grid Layout Params for perfect columns
|
||||
GridLayout.LayoutParams gridParams = new GridLayout.LayoutParams(
|
||||
GridLayout.spec(GridLayout.UNDEFINED, 1f),
|
||||
GridLayout.spec(GridLayout.UNDEFINED, 1f)
|
||||
);
|
||||
gridParams.width = 0;
|
||||
gridParams.width = ViewGroup.LayoutParams.WRAP_CONTENT;
|
||||
gridParams.setMargins(0, 30, 0, 30);
|
||||
appItem.setLayoutParams(gridParams);
|
||||
|
||||
|
||||
@@ -38,15 +38,4 @@
|
||||
android:useDefaultMargins="false" />
|
||||
</ScrollView>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/textView"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="9dp"
|
||||
android:text="Property of FRC team 2648/member of FRC team 2648"
|
||||
android:textAppearance="@style/TextAppearance.AppCompat.Large"
|
||||
app:layout_constraintBottom_toTopOf="@+id/topSpacer"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
Reference in New Issue
Block a user